]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dialog.h
And a 'standard colours' bitmap to help fix wxToolBar colour mapping problem
[wxWidgets.git] / include / wx / dialog.h
index ac5f9a967228e9981484d46f6244a6fe28fd02f0..78e89ce307f63006304cc34859eafa9a75b007be 100644 (file)
 #ifndef _WX_DIALOG_H_BASE_
 #define _WX_DIALOG_H_BASE_
 
+#ifdef __GNUG__
+    #pragma interface "dialogbase.h"
+#endif
+
 #include "wx/defs.h"
 #include "wx/panel.h"
 
@@ -23,7 +27,6 @@ public:
     void SetReturnCode(int returnCode) { m_returnCode = returnCode; }
     int GetReturnCode() const { return m_returnCode; }
 
-protected:
     // splits text up at newlines and places the
     // lines into a vertical wxBoxSizer
     wxSizer *CreateTextSizer( const wxString &message );
@@ -31,6 +34,7 @@ protected:
     // places buttons into a horizontal wxBoxSizer
     wxSizer *CreateButtonSizer( long flags );
 
+protected:
     // the return code from modal dialog
     int m_returnCode;
 };