From fb5ac85a06ed69ebaf31cef70f2f9dbf9e9222bc Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Mon, 8 May 2000 11:39:05 +0000 Subject: [PATCH] Made a few helper functions public. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7366 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/dialog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/dialog.h b/include/wx/dialog.h index fb131cd96c..78e89ce307 100644 --- a/include/wx/dialog.h +++ b/include/wx/dialog.h @@ -27,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 ); @@ -35,6 +34,7 @@ protected: // places buttons into a horizontal wxBoxSizer wxSizer *CreateButtonSizer( long flags ); +protected: // the return code from modal dialog int m_returnCode; };