]> git.saurik.com Git - wxWidgets.git/commitdiff
Make wxGnomePrintModule public so that wxGtkPrintModule knows about it
authorRobert Roebling <robert@roebling.de>
Wed, 5 Sep 2007 19:26:46 +0000 (19:26 +0000)
committerRobert Roebling <robert@roebling.de>
Wed, 5 Sep 2007 19:26:46 +0000 (19:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48570 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/gnome/gprint.h
src/gtk/gnome/gprint.cpp

index d2d1ee6948553303c372b7573b8694de56acfca5..e49838e62e432225c2a3298321096b4786f0f1a4 100644 (file)
 #include "wx/print.h"
 #include "wx/printdlg.h"
 #include "wx/dc.h"
 #include "wx/print.h"
 #include "wx/printdlg.h"
 #include "wx/dc.h"
+#include "wx/module.h"
 
 typedef struct _GnomePrintJob GnomePrintJob;
 typedef struct _GnomePrintContext GnomePrintContext;
 typedef struct _GnomePrintConfig GnomePrintConfig;
 
 
 typedef struct _GnomePrintJob GnomePrintJob;
 typedef struct _GnomePrintContext GnomePrintContext;
 typedef struct _GnomePrintConfig GnomePrintConfig;
 
+// ----------------------------------------------------------------------------
+// wxGnomePrintModule
+// ----------------------------------------------------------------------------
+
+class wxGnomePrintModule: public wxModule
+{
+public:
+    wxGnomePrintModule() {}
+    bool OnInit();
+    void OnExit();
+
+private:
+    DECLARE_DYNAMIC_CLASS(wxGnomePrintModule)
+};
+
 //----------------------------------------------------------------------------
 // wxGnomePrintNativeData
 //----------------------------------------------------------------------------
 //----------------------------------------------------------------------------
 // wxGnomePrintNativeData
 //----------------------------------------------------------------------------
index e3c8fffb0dcf77379c11efc5aa173a29f15fff69..e1230211fc0b566f559b111b2b98b3e81992c2bb 100644 (file)
@@ -1972,17 +1972,9 @@ int wxGnomePrintDC::GetResolution()
     return 72;
 }
 
     return 72;
 }
 
-
-class wxGnomePrintModule: public wxModule
-{
-public:
-    wxGnomePrintModule() {}
-    bool OnInit();
-    void OnExit();
-
-private:
-    DECLARE_DYNAMIC_CLASS(wxGnomePrintModule)
-};
+// ----------------------------------------------------------------------------
+// wxGnomePrintModule
+// ----------------------------------------------------------------------------
 
 bool wxGnomePrintModule::OnInit()
 {
 
 bool wxGnomePrintModule::OnInit()
 {