summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-04-30 15:07:16 +0000
committerManolo Gouy <Manolo>2016-04-30 15:07:16 +0000
commit86a7bbe93a5743d548af8c92fbbbf0a7518d0578 (patch)
tree4b89aeb73724327380637c6f478ce45a9c8bf3d9
parentfde440f752fcbb8e3d67aef3c3d7001dbb0e38c7 (diff)
Member function Fl_Widget_Surface::draw(Fl_Widget*,int,int) does not need to be virtual.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11708 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--FL/Fl_Widget_Surface.H2
1 files changed, 1 insertions, 1 deletions
diff --git a/FL/Fl_Widget_Surface.H b/FL/Fl_Widget_Surface.H
index e8c99f468..34e7451cf 100644
--- a/FL/Fl_Widget_Surface.H
+++ b/FL/Fl_Widget_Surface.H
@@ -45,7 +45,7 @@ public:
Undoes the effect of a previous translate() call.
*/
virtual void untranslate(void) {}
- virtual void draw(Fl_Widget* widget, int delta_x = 0, int delta_y = 0);
+ void draw(Fl_Widget* widget, int delta_x = 0, int delta_y = 0);
virtual void draw_decorated_window(Fl_Window *win, int x_offset = 0, int y_offset = 0);
virtual void print_window_part(Fl_Window *win, int x, int y, int w, int h, int delta_x = 0, int delta_y = 0);
virtual int printable_rect(int *w, int *h);