diff options
| author | Manolo Gouy <Manolo> | 2010-06-21 15:49:45 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2010-06-21 15:49:45 +0000 |
| commit | 449b99dd86c7bdc08f98dd603ee6d18ff1a025dd (patch) | |
| tree | cdbf50671097f0d9c24bf6c1e551fea0f2d62080 /src/fl_font_mac.cxx | |
| parent | 6c2274f011b7fafa346626913e2c440b22f16a24 (diff) | |
Fix STR 2339 by defining new member function rtl_draw of class Fl_Graphics_Driver
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7652 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_font_mac.cxx')
| -rw-r--r-- | src/fl_font_mac.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fl_font_mac.cxx b/src/fl_font_mac.cxx index cb6887827..1a67bf558 100644 --- a/src/fl_font_mac.cxx +++ b/src/fl_font_mac.cxx @@ -488,8 +488,8 @@ void Fl_Graphics_Driver::draw(int angle, const char *str, int n, int x, int y) { CGContextRestoreGState(fl_gc); } -void fl_rtl_draw(const char* c, int n, int x, int y) { - fl_draw(c, n, x - fl_width(c, n), y); //to check; +void Fl_Graphics_Driver::rtl_draw(const char* c, int n, int x, int y) { + draw(c, n, x - fl_width(c, n), y); } // |
