]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/dcprint.cpp
simplify wxPizza a bit by always drawing the border on parent
[wxWidgets.git] / src / palmos / dcprint.cpp
index fae66da4eb2ca19ff0797d8b38a36ea891c23f64..81fabe9cb27973860eb89e767a8367cfc0b4cd7e 100644 (file)
@@ -100,6 +100,14 @@ void wxPrinterDC::EndPage()
 {
 }
 
+wxRect wxPrinterDC::GetPaperRect() const
+{
+    // Use page rect if we can't get paper rect.
+    wxCoord w, h;
+    GetSize(&w, &h);
+    return wxRect(0, 0, w, h);
+}
+
 // Returns default device and port names
 static bool wxGetDefaultDeviceName(wxString& deviceName, wxString& portName)
 {