From cf37057367fab0e0c7257a1588d73eba80873d2e Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Thu, 18 Mar 2010 18:02:50 +0000 Subject: Renamed class Fl_Virtual_Printer into Fl_Abstract_Printer git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7301 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_Printer.H | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'FL/Fl_Printer.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 -- cgit v1.2.3