diff options
| author | Manolo Gouy <Manolo> | 2016-03-31 17:25:18 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-03-31 17:25:18 +0000 |
| commit | 2de2f5496820f91c81df65834eee268126086209 (patch) | |
| tree | 1ee88071287b849a08467bee48f7c281b38d1bae /src/Fl.cxx | |
| parent | ff83e355b09f07848257d8fef7a12705347955cc (diff) | |
Move the marked text support member functions from Fl_System_Driver to Fl_Screen_Driver.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11486 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl.cxx')
| -rw-r--r-- | src/Fl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx index 8c66965d8..9e56971f5 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -1883,11 +1883,11 @@ int Fl::dnd() } void Fl::reset_marked_text() { - Fl_System_Driver::driver()->reset_marked_text(); + Fl::screen_driver()->reset_marked_text(); } void Fl::insertion_point_location(int x, int y, int height) { // sets window coordinates & height of insertion point - Fl_System_Driver::driver()->insertion_point_location(x, y, height); + Fl::screen_driver()->insertion_point_location(x, y, height); } // |
