summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2010-04-06 17:38:27 +0000
committerManolo Gouy <Manolo>2010-04-06 17:38:27 +0000
commit24b8386bf18f0ae1b07b3126e4ef90d80064fd8c (patch)
tree598971eeefe856fd559db77670e67f01ec1c6067 /FL
parentf44190d356137367367aeb5ac00fd48c133f0a60 (diff)
Fl_Gl_Device_Plugin: more device-independant API
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7458 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Printer.H4
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_Printer.H b/FL/Fl_Printer.H
index b4a285ff8..b2b154666 100644
--- a/FL/Fl_Printer.H
+++ b/FL/Fl_Printer.H
@@ -206,11 +206,11 @@ public:
/** \brief Returns the plugin name */
virtual const char *name() = 0;
/** \brief Prints a widget
- \param p the printer
\param w the widget
\param x,y offsets where to print relatively to coordinates origin
+ \param height height of the current drawing area
*/
- virtual int print(Fl_Abstract_Printer* p, Fl_Widget* w, int x, int y) { return 0; }
+ virtual int print(Fl_Widget* w, int x, int y, int height) { return 0; }
};
#endif // Fl_Printer_H