summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-04-13 14:19:13 +0000
committerManolo Gouy <Manolo>2016-04-13 14:19:13 +0000
commit8653a5353e2296269685dcb1f61bc64f0a79bd3a (patch)
treec6875126e8648988cdca57ce93796affbb750f67 /FL
parentb590bc49f9dc2f33ebc51026bf1d7a7e519de4ad (diff)
Rewrite fl_encoding_mac_roman.cxx under the driver model.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11600 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_System_Driver.H3
1 files changed, 3 insertions, 0 deletions
diff --git a/FL/Fl_System_Driver.H b/FL/Fl_System_Driver.H
index a45a64700..6f92889f6 100644
--- a/FL/Fl_System_Driver.H
+++ b/FL/Fl_System_Driver.H
@@ -177,6 +177,9 @@ public:
// the implementations of local_to_latin1() and latin1_to_local() are in fl_encoding_latin1.cxx
virtual const char *local_to_latin1(const char *t, int n);
virtual const char *latin1_to_local(const char *t, int n);
+ // the implementations of local_to_mac_roman() and mac_roman_to_local() are in fl_encoding_mac_roman.cxx
+ virtual const char *local_to_mac_roman(const char *t, int n);
+ virtual const char *mac_roman_to_local(const char *t, int n);
};
#endif // FL_SYSTEM_DRIVER_H