diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-07-08 14:59:37 +0200 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-07-08 15:25:14 +0200 |
| commit | 3cf5a302fd2225b8d2622eb40e91262f4e7557c1 (patch) | |
| tree | 2bd4ad8207dc22a819518719a9e00a1ae492fd03 /FL/Fl_Printer.H | |
| parent | 2803f70f584f3a3d88d02b122f44b90d15cc22c1 (diff) | |
Replace 'FL_OVERRIDE' with 'override' in public headers
... except FL/fl_attr.h where FL_OVERRIDE is #define'd
Diffstat (limited to 'FL/Fl_Printer.H')
| -rw-r--r-- | FL/Fl_Printer.H | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/FL/Fl_Printer.H b/FL/Fl_Printer.H index 3efa5f74c..31926eff3 100644 --- a/FL/Fl_Printer.H +++ b/FL/Fl_Printer.H @@ -106,20 +106,20 @@ private: public: /** The constructor */ Fl_Printer(void); - int begin_job(int pagecount = 0, int *frompage = NULL, int *topage = NULL, char **perr_message = NULL) FL_OVERRIDE; - int begin_page(void) FL_OVERRIDE; - int printable_rect(int *w, int *h) FL_OVERRIDE; - void margins(int *left, int *top, int *right, int *bottom) FL_OVERRIDE; - void origin(int *x, int *y) FL_OVERRIDE; - void origin(int x, int y) FL_OVERRIDE; - void scale(float scale_x, float scale_y = 0.) FL_OVERRIDE; - void rotate(float angle) FL_OVERRIDE; - void translate(int x, int y) FL_OVERRIDE; - void untranslate(void) FL_OVERRIDE; - int end_page (void) FL_OVERRIDE; - void end_job (void) FL_OVERRIDE; - void set_current(void) FL_OVERRIDE; - bool is_current() FL_OVERRIDE; + int begin_job(int pagecount = 0, int *frompage = NULL, int *topage = NULL, char **perr_message = NULL) override; + int begin_page(void) override; + int printable_rect(int *w, int *h) override; + void margins(int *left, int *top, int *right, int *bottom) override; + void origin(int *x, int *y) override; + void origin(int x, int y) override; + void scale(float scale_x, float scale_y = 0.) override; + void rotate(float angle) override; + void translate(int x, int y) override; + void untranslate(void) override; + int end_page (void) override; + void end_job (void) override; + void set_current(void) override; + bool is_current() override; /** \name These attributes are useful for the Linux/Unix platform only. \{ |
