summaryrefslogtreecommitdiff
path: root/src/drivers/GDI
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 /src/drivers/GDI
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 'src/drivers/GDI')
-rw-r--r--src/drivers/GDI/Fl_GDI_Image_Surface_Driver.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/GDI/Fl_GDI_Image_Surface_Driver.cxx b/src/drivers/GDI/Fl_GDI_Image_Surface_Driver.cxx
index 9a037084f..b51426506 100644
--- a/src/drivers/GDI/Fl_GDI_Image_Surface_Driver.cxx
+++ b/src/drivers/GDI/Fl_GDI_Image_Surface_Driver.cxx
@@ -24,7 +24,7 @@
#include <windows.h>
class Fl_GDI_Image_Surface_Driver : public Fl_Image_Surface_Driver {
- virtual void end_current_(Fl_Surface_Device*);
+ virtual void end_current_();
public:
Window pre_window;
int _savedc;
@@ -93,7 +93,7 @@ Fl_RGB_Image* Fl_GDI_Image_Surface_Driver::image()
}
-void Fl_GDI_Image_Surface_Driver::end_current_(Fl_Surface_Device*)
+void Fl_GDI_Image_Surface_Driver::end_current_()
{
HDC gc = (HDC)driver()->gc();
GetWindowOrgEx(gc, &origin);