diff options
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Paged_Device.H | 2 | ||||
| -rw-r--r-- | FL/Fl_Printer.H | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Paged_Device.H b/FL/Fl_Paged_Device.H index 82de3a60c..6d86e5840 100644 --- a/FL/Fl_Paged_Device.H +++ b/FL/Fl_Paged_Device.H @@ -39,8 +39,6 @@ class FL_EXPORT Fl_Paged_Device : public Fl_Widget_Surface { protected: /** \brief The constructor */ Fl_Paged_Device() : Fl_Widget_Surface(NULL) {}; - /** A platform should implement this function to support printing via the Fl_Printer class. */ - static Fl_Paged_Device* newPrinterDriver(void); public: /** \brief Possible page formats. diff --git a/FL/Fl_Printer.H b/FL/Fl_Printer.H index ca35750e9..c5e0cc131 100644 --- a/FL/Fl_Printer.H +++ b/FL/Fl_Printer.H @@ -87,6 +87,8 @@ class FL_EXPORT Fl_Printer : public Fl_Paged_Device { private: Fl_Paged_Device *printer; + /** Each platform implements this function its own way */ + static Fl_Paged_Device* newPrinterDriver(void); public: /** The constructor */ Fl_Printer(void); @@ -104,7 +106,7 @@ public: void end_job (void); void draw_decorated_window(Fl_Window *win, int x_offset, int y_offset); void set_current(void); - + /** \name These attributes are useful for the Linux/Unix platform only. \{ */ |
