summaryrefslogtreecommitdiff
path: root/src/fl_font.cxx
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2010-12-28 12:02:23 +0000
committerManolo Gouy <Manolo>2010-12-28 12:02:23 +0000
commitb431c1e0e7cec74dfe55d558a42a0f162079b0c1 (patch)
treecfda391b077654629ea20a6edbde5590e45c09e9 /src/fl_font.cxx
parentf3e04b8b87a7acd6a46486bd21258d4bf3a6b06d (diff)
Use device abstraction for font and text drawing.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8126 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_font.cxx')
-rw-r--r--src/fl_font.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fl_font.cxx b/src/fl_font.cxx
index 91f5ea54e..2a6833adf 100644
--- a/src/fl_font.cxx
+++ b/src/fl_font.cxx
@@ -81,7 +81,7 @@ void fl_text_extents(const char *c, int &dx, int &dy, int &w, int &h) {
} // fl_text_extents
-#if !USE_XFT && !__APPLE__
+#ifndef __APPLE__
void fl_draw(const char* str, int l, float x, float y) {
fl_draw(str, l, (int)x, (int)y);
}