summaryrefslogtreecommitdiff
path: root/FL/Fl_Printer.H
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2010-03-18 18:02:50 +0000
committerManolo Gouy <Manolo>2010-03-18 18:02:50 +0000
commitcf37057367fab0e0c7257a1588d73eba80873d2e (patch)
tree85204d459ef5dadaba7913b633a692a7ee91c910 /FL/Fl_Printer.H
parentc72a57a56bc164b1d02b246e66d8fae54c994f05 (diff)
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
Diffstat (limited to 'FL/Fl_Printer.H')
-rw-r--r--FL/Fl_Printer.H10
1 files changed, 5 insertions, 5 deletions
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