summaryrefslogtreecommitdiff
path: root/src/Fl_PostScript.cxx
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2011-01-31 15:53:23 +0000
committerManolo Gouy <Manolo>2011-01-31 15:53:23 +0000
commit535f0c2d3b17b20723bd5520d91531eda62e5ffe (patch)
treeadf79fd9692054f4c1bc66fcac7d2f82d19b0814 /src/Fl_PostScript.cxx
parent1993f08a33c95167b7a90579ffb178c6af625086 (diff)
Introduction of the Fl_Printer class requires all member functions of class
Fl_Paged_Device to be virtual. That is done here. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8342 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_PostScript.cxx')
-rw-r--r--src/Fl_PostScript.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Fl_PostScript.cxx b/src/Fl_PostScript.cxx
index 712cd3253..bca764493 100644
--- a/src/Fl_PostScript.cxx
+++ b/src/Fl_PostScript.cxx
@@ -1386,6 +1386,11 @@ int Fl_PostScript_File_Device::printable_rect(int *w, int *h)
return 0;
}
+void Fl_PostScript_File_Device::origin(int *x, int *y)
+{
+ Fl_Paged_Device::origin(x, y);
+}
+
void Fl_PostScript_File_Device::origin(int x, int y)
{
x_offset = x;