diff options
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Device.H | 4 | ||||
| -rw-r--r-- | FL/Fl_Printer.H | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/FL/Fl_Device.H b/FL/Fl_Device.H index fee8b034e..33fc33ed3 100644 --- a/FL/Fl_Device.H +++ b/FL/Fl_Device.H @@ -44,7 +44,7 @@ class Fl_RGB_Image; class Fl_Pixmap; class Fl_Bitmap; class Fl_Display; -class Fl_Virtual_Printer; +class Fl_Abstract_Printer; extern Fl_Display *fl_display_device; typedef void (*Fl_Draw_Image_Cb)(void* ,int,int,int,uchar*); @@ -237,7 +237,7 @@ public: : Fl_Plugin(klass(), name) { } virtual const char *klass() { return "fltk:device"; } virtual const char *name() = 0; - virtual int print(Fl_Virtual_Printer*, Fl_Widget*, int x, int y) { return 0; } + virtual int print(Fl_Abstract_Printer*, Fl_Widget*, int x, int y) { return 0; } }; #endif // Fl_Device_H diff --git a/FL/Fl_Printer.H b/FL/Fl_Printer.H index 791b3ccf7..8f2769638 100644 --- a/FL/Fl_Printer.H +++ b/FL/Fl_Printer.H @@ -51,7 +51,7 @@ */ class #ifndef FL_DOXYGEN - Fl_Virtual_Printer + Fl_Abstract_Printer #else Fl_Printer #endif @@ -74,7 +74,7 @@ protected: void *gc; // the printer's graphics context, if there's one, NULL otherwise void delete_image_list(); // deletes the page image list #ifndef FL_DOXYGEN - Fl_Virtual_Printer(void) { gc = NULL; bg_r_ = bg_g_ = bg_b_ = 0; }; + Fl_Abstract_Printer(void) { gc = NULL; bg_r_ = bg_g_ = bg_b_ = 0; }; #endif public: #ifdef FL_DOXYGEN @@ -234,7 +234,7 @@ public: }; #ifdef __APPLE__ -class Fl_Quartz_Printer : public Fl_Virtual_Printer { +class Fl_Quartz_Printer : public Fl_Abstract_Printer { private: float scale_x; float scale_y; @@ -259,7 +259,7 @@ public: #endif #ifdef WIN32 -class Fl_GDI_Printer : public Fl_Virtual_Printer { +class Fl_GDI_Printer : public Fl_Abstract_Printer { private: int abortPrint; PRINTDLG pd; @@ -293,7 +293,7 @@ public: */ class Fl_PSfile_Device : public #ifndef FL_DOXYGEN - Fl_Virtual_Printer + Fl_Abstract_Printer #else Fl_Device #endif |
