diff options
| author | Manolo Gouy <Manolo> | 2017-07-20 08:10:45 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2017-07-20 08:10:45 +0000 |
| commit | 4764b9bc2e6c6ddbdad6ea4930350a2da4fa19f2 (patch) | |
| tree | 6ccf866ee5d23446c43808ffa91afd7c4520481d /FL | |
| parent | 864c7609c769570e99c6417278892542accea6f7 (diff) | |
Fl_Window_Driver::flush_single() needs not be a virtual member function.
It is really an accessor to protected method Fl_Window::flush().
Rename it to Fl_Window_Driver::flush_Fl_Window to reflect that.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12340 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Window_Driver.H | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FL/Fl_Window_Driver.H b/FL/Fl_Window_Driver.H index 9a588a46e..3035b330b 100644 --- a/FL/Fl_Window_Driver.H +++ b/FL/Fl_Window_Driver.H @@ -49,6 +49,7 @@ protected: Fl_Window *pWindow; struct shape_data_type; shape_data_type *shape_data_; ///< non-null means the window has a non-rectangular shape + void flush_Fl_Window(); // accessor to protected Fl_Window::flush() public: Fl_Window_Driver(Fl_Window *); @@ -120,7 +121,6 @@ public: virtual void flush(); // the default implementation may be enough virtual void flush_double(); virtual void flush_overlay(); - virtual void flush_single(); virtual void flush_menu(); virtual void erase_menu() {} virtual void draw_begin(); |
