]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/dialog.h
Added #include wx/listbox.h needed under Linux (probably all precomp header
[wxWidgets.git] / include / wx / gtk1 / dialog.h
index 6edb8e1df6e1817523f11c712ab9b0c81afefaa1..82334eb479ce25683047e82e079291b8c6dcd2bc 100644 (file)
@@ -87,6 +87,9 @@ public:
     virtual void Maximize() { }
     virtual void Restore() { }
 
+    void SetReturnCode(int returnCode) { m_returnCode = returnCode; }
+    int GetReturnCode() const { return m_returnCode; }
+
     // implementation
 
     virtual void GtkOnSize( int x, int y, int width, int height );
@@ -105,6 +108,8 @@ protected:
                            int sizeFlags = wxSIZE_AUTO);
 
 private:
+    int m_returnCode;
+
     DECLARE_EVENT_TABLE()
 };