summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2019-04-10 13:21:23 +0200
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2019-04-10 13:21:23 +0200
commit4f0a16697eeb62bfa0b5dda13b209e63b03832f7 (patch)
tree756f0b6867727a6c370e34c17d805838af97fe22 /src
parent7a0bebb22fba0e2ed260b513421f6082a1c27a9e (diff)
Remove useless member functions Fl_XXX_Copy_Surface_Driver::w() and h()
Diffstat (limited to 'src')
-rw-r--r--src/drivers/GDI/Fl_GDI_Copy_Surface_Driver.cxx2
-rw-r--r--src/drivers/Quartz/Fl_Quartz_Copy_Surface_Driver.H2
-rw-r--r--src/drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.cxx2
3 files changed, 0 insertions, 6 deletions
diff --git a/src/drivers/GDI/Fl_GDI_Copy_Surface_Driver.cxx b/src/drivers/GDI/Fl_GDI_Copy_Surface_Driver.cxx
index 053c90ff0..5041cc7e4 100644
--- a/src/drivers/GDI/Fl_GDI_Copy_Surface_Driver.cxx
+++ b/src/drivers/GDI/Fl_GDI_Copy_Surface_Driver.cxx
@@ -35,8 +35,6 @@ protected:
void set_current();
void translate(int x, int y);
void untranslate();
- int w() {return width;}
- int h() {return height;}
};
diff --git a/src/drivers/Quartz/Fl_Quartz_Copy_Surface_Driver.H b/src/drivers/Quartz/Fl_Quartz_Copy_Surface_Driver.H
index aacf6b749..37751419b 100644
--- a/src/drivers/Quartz/Fl_Quartz_Copy_Surface_Driver.H
+++ b/src/drivers/Quartz/Fl_Quartz_Copy_Surface_Driver.H
@@ -37,8 +37,6 @@ protected:
void set_current();
void translate(int x, int y);
void untranslate();
- int w() {return width;}
- int h() {return height;}
};
#endif /* Fl_Quartz_Copy_Surface_Driver_H */
diff --git a/src/drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.cxx b/src/drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.cxx
index 152318d37..532714980 100644
--- a/src/drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.cxx
+++ b/src/drivers/Xlib/Fl_Xlib_Copy_Surface_Driver.cxx
@@ -37,8 +37,6 @@ protected:
void set_current();
void translate(int x, int y);
void untranslate();
- int w() {return width;}
- int h() {return height;}
};