summaryrefslogtreecommitdiff
path: root/FL/Fl_Device.H
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2018-05-01 17:09:15 +0000
committerManolo Gouy <Manolo>2018-05-01 17:09:15 +0000
commitb73ff860cc44217e642335ef61ce8c1ee418eeb9 (patch)
treeb239eb2b2f6025f815f70f33e3a86a3aa6c959c9 /FL/Fl_Device.H
parente70733b46f6974111c5430cb499a55e757224f9a (diff)
Make virtual void Fl_Surface_Device::end_current_() have no argument because none is used.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12889 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Device.H')
-rw-r--r--FL/Fl_Device.H5
1 files changed, 2 insertions, 3 deletions
diff --git a/FL/Fl_Device.H b/FL/Fl_Device.H
index afa4a458a..56483e214 100644
--- a/FL/Fl_Device.H
+++ b/FL/Fl_Device.H
@@ -58,9 +58,8 @@ class FL_EXPORT Fl_Surface_Device {
static Fl_Surface_Device *surface_; // the surface that currently receives graphics requests
static Fl_Surface_Device *default_surface(); // create surface if none exists yet
/* Some drawing surfaces (e.g., Fl_XXX_Image_Surface_Driver) re-implement this.
- Gets called each time a surface ceases to be the current drawing surface.
- The next_current argument gives the drawing surface that will become current next */
- virtual void end_current_(Fl_Surface_Device *next_current) {}
+ Gets called each time a surface ceases to be the current drawing surface. */
+ virtual void end_current_() {}
protected:
/** Constructor that sets the graphics driver to use for the created surface. */
Fl_Surface_Device(Fl_Graphics_Driver *graphics_driver) {pGraphicsDriver = graphics_driver; }