summaryrefslogtreecommitdiff
path: root/src/touchmanager.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-02-16 22:17:22 +0300
committerAndrei Karas <akaras@inbox.ru>2014-02-16 22:17:22 +0300
commit6e6c5b2ba399e0ed364ada843c4c759ee54de219 (patch)
tree562e6a840c856ba8c4d35c6806020289c65d54d2 /src/touchmanager.cpp
parent82ac4641828ec7387863bb18cf4493190c4cc68f (diff)
downloadplus-6e6c5b2ba399e0ed364ada843c4c759ee54de219.tar.gz
plus-6e6c5b2ba399e0ed364ada843c4c759ee54de219.tar.bz2
plus-6e6c5b2ba399e0ed364ada843c4c759ee54de219.tar.xz
plus-6e6c5b2ba399e0ed364ada843c4c759ee54de219.zip
combine font classes in one.
Diffstat (limited to 'src/touchmanager.cpp')
-rw-r--r--src/touchmanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/touchmanager.cpp b/src/touchmanager.cpp
index b7b926383..8c4c8b0db 100644
--- a/src/touchmanager.cpp
+++ b/src/touchmanager.cpp
@@ -25,8 +25,8 @@
#include "mouseinput.h"
#include "touchactions.h"
+#include "gui/font.h"
#include "gui/gui.h"
-#include "gui/sdlfont.h"
#include "input/inputmanager.h"
@@ -239,7 +239,7 @@ void TouchManager::draw()
if (!gui)
return;
- SDLFont *const font = boldFont;
+ Font *const font = boldFont;
mainGraphics->setColorAll(Theme::getThemeColor(Theme::TEXT),
Theme::getThemeColor(Theme::TEXT_OUTLINE));
FOR_EACH (TouchItemVectorCIter, it, mObjects)