diff options
| author | Manolo Gouy <Manolo> | 2016-03-31 19:55:03 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-03-31 19:55:03 +0000 |
| commit | 519673a7761f0e43d926ea5dac43cda305fb089e (patch) | |
| tree | e3d18b6b7916a09c9a224cfea9694641d68cabfe /src/Fl_Text_Display.cxx | |
| parent | 5d12ea5ab12d3b911777bb8cbdeb70c3d183267c (diff) | |
Move dnd and character-composition related functions from Fl_System_Driver to Fl_Screen_Driver
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11489 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Text_Display.cxx')
| -rw-r--r-- | src/Fl_Text_Display.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_Text_Display.cxx b/src/Fl_Text_Display.cxx index 4d516c261..7417bb5b5 100644 --- a/src/Fl_Text_Display.cxx +++ b/src/Fl_Text_Display.cxx @@ -31,7 +31,7 @@ #include <FL/Fl_Text_Buffer.H> #include <FL/Fl_Text_Display.H> #include <FL/Fl_Window.H> -#include <FL/Fl_System_Driver.H> +#include <FL/Fl_Screen_Driver.H> #if defined(WIN32) || defined(__APPLE__) // PORTME: Fl_Screen_Driver - platform editor feel #elif defined(FL_PORTING) @@ -3912,7 +3912,7 @@ int Fl_Text_Display::handle(int event) { if (dragType==DRAG_START_DND) { if (!Fl::event_is_click() && Fl::dnd_text_ops()) { const char* copy = buffer()->selection_text(); - Fl_System_Driver::driver()->dnd(1); + Fl::screen_driver()->dnd(1); free((void*)copy); } return 1; |
