]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dcbase.cpp
wxDC rework, forgot these
[wxWidgets.git] / src / common / dcbase.cpp
index 585486e25a7e21282a62ac81c407bfacac10ceba..be5eeb9578f5f7e0b66cb84861f80257f31c099a 100644 (file)
@@ -477,6 +477,21 @@ wxPrinterDC::wxPrinterDC( const wxPrintData &data )
     m_pimpl = factory->CreatePrinterDC( this, data );
 }
 
+wxPrinterDC::~wxPrinterDC()
+{
+}
+
+wxRect wxPrinterDC::GetPaperRect()
+{
+    return GetImpl()->GetPaperRect();
+}
+
+int wxPrinterDC::GetResolution()
+{
+    return GetImpl()->GetResolution();
+}
+
+
 //-----------------------------------------------------------------------------
 // wxImplDC
 //-----------------------------------------------------------------------------