summaryrefslogtreecommitdiff
path: root/src/Fl_Graphics_Driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fl_Graphics_Driver.cxx')
-rw-r--r--src/Fl_Graphics_Driver.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Graphics_Driver.cxx b/src/Fl_Graphics_Driver.cxx
index e127e4190..fe943d780 100644
--- a/src/Fl_Graphics_Driver.cxx
+++ b/src/Fl_Graphics_Driver.cxx
@@ -574,7 +574,7 @@ void Fl_Graphics_Driver::push_clip(int x, int y, int w, int h) {}
Default graphics driver implementation of fl_clip_box().
This default implementation is sufficient for a graphics driver that does not
- support clipping. Drivers that support clipping must override this virtual method.
+ support clipping. Drivers that support clipping must this virtual method.
It returns
- in (X, Y, W, H) the same values as given in (x, y, w, h) respectively
@@ -760,7 +760,7 @@ void Fl_Graphics_Driver::overlay_rect(int x, int y, int w , int h) {
loop(x, y, x+w-1, y, x+w-1, y+h-1, x, y+h-1);
}
-float Fl_Graphics_Driver::override_scale() { return scale();}
+float Fl_Graphics_Driver::_scale() { return scale();}
void Fl_Graphics_Driver::restore_scale(float) { }
@@ -1202,7 +1202,7 @@ void Fl_Scalable_Graphics_Driver::draw_image_mono_unscaled(const uchar* buf, int
void Fl_Scalable_Graphics_Driver::draw_image_mono_unscaled(Fl_Draw_Image_Cb cb, void* data, int X,int Y,int W,int H, int D) {}
-float Fl_Scalable_Graphics_Driver::override_scale() {
+float Fl_Scalable_Graphics_Driver::_scale() {
float s = scale();
if (s != 1.f) {
scale(1.f);