]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/dialog.h
Attempting to restore the binary files that got trashed earlier today.
[wxWidgets.git] / include / wx / msw / dialog.h
index ccc130f2acba264f7e23566c043a8488183bd6bf..0e4dce9d62304171aeedeee202425169db95d5aa 100644 (file)
@@ -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);
@@ -92,8 +89,7 @@ public:
     void SetModal(bool flag);
 
     virtual void Centre(int direction = wxBOTH);
-    virtual bool IsModal() const
-        { return ((GetWindowStyleFlag() & wxDIALOG_MODAL) == wxDIALOG_MODAL); }
+    virtual bool IsModal() const;
 
     // For now, same as Show(TRUE) but returns return code
     virtual int ShowModal();
@@ -132,8 +128,7 @@ private:
     WXHWND                m_hwndToolTip;
 #endif // tooltips
 
-    int m_returnCode;
-
+private:
     DECLARE_EVENT_TABLE()
 };