]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/dialog.h
Added wxDllLoader::UnloadLibrary()
[wxWidgets.git] / include / wx / msw / dialog.h
index 74a07e56856b3b0e60cec5e1a9931a8b92c27e6a..917667ed4f75969d05daaad11ffa45d879819c94 100644 (file)
@@ -21,7 +21,7 @@
 WXDLLEXPORT_DATA(extern const wxChar*) wxDialogNameStr;
 
 // Dialog boxes
-class WXDLLEXPORT wxDialog : public wxPanel
+class WXDLLEXPORT wxDialog : public wxDialogBase
 {
     DECLARE_DYNAMIC_CLASS(wxDialog)
 
@@ -60,9 +60,6 @@ public:
 
     ~wxDialog();
 
-    void SetReturnCode(int returnCode) { m_returnCode = returnCode; }
-    int GetReturnCode() const { return m_returnCode; }
-
     virtual bool Destroy();
 
     virtual void DoSetClientSize(int width, int height);
@@ -132,8 +129,7 @@ private:
     WXHWND                m_hwndToolTip;
 #endif // tooltips
 
-    int m_returnCode;
-
+private:
     DECLARE_EVENT_TABLE()
 };