summaryrefslogtreecommitdiff
path: root/FL/Fl_Copy_Surface.H
diff options
context:
space:
mode:
authormaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 16:24:45 +0500
committermaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 16:24:45 +0500
commitcdf2832347b8fdf0389cd373c2ead0ac5d071037 (patch)
tree96f9771aed0710899aa6cbba2a84dadfe76e996e /FL/Fl_Copy_Surface.H
parentdb214d1145e46d527a46d1fc2519548d2c4d23f1 (diff)
wip
Diffstat (limited to 'FL/Fl_Copy_Surface.H')
-rw-r--r--FL/Fl_Copy_Surface.H16
1 files changed, 8 insertions, 8 deletions
diff --git a/FL/Fl_Copy_Surface.H b/FL/Fl_Copy_Surface.H
index 905daaad8..e6410f791 100644
--- a/FL/Fl_Copy_Surface.H
+++ b/FL/Fl_Copy_Surface.H
@@ -50,20 +50,20 @@ class FL_EXPORT Fl_Copy_Surface : public Fl_Widget_Surface {
private:
class Fl_Copy_Surface_Driver *platform_surface;
protected:
- void translate(int x, int y) override;
- void untranslate() override;
+ void translate(int x, int y);
+ void untranslate();
public:
Fl_Copy_Surface(int w, int h);
~Fl_Copy_Surface();
- void set_current() override;
- bool is_current() override;
+ void set_current();
+ bool is_current();
/** Returns the pixel width of the copy surface */
int w();
/** Returns the pixel height of the copy surface */
int h();
- void origin(int *x, int *y) override;
- void origin(int x, int y) override;
- int printable_rect(int *w, int *h) override;
+ void origin(int *x, int *y);
+ void origin(int x, int y);
+ int printable_rect(int *w, int *h);
};
@@ -91,7 +91,7 @@ protected:
void set_current() override = 0;
void translate(int x, int y) override = 0;
void untranslate() override = 0;
- int printable_rect(int *w, int *h) override;
+ int printable_rect(int *w, int *h);
/** Each platform implements this function its own way.
It returns an object implementing all virtual functions
of class Fl_Copy_Surface_Driver for the platform.