Incomplete (PalmOS) setup compatibility.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31217 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-01-03 07:03:31 +00:00
parent 26378b412c
commit 974c2a5904
2 changed files with 38 additions and 28 deletions

View File

@@ -642,6 +642,8 @@ private:
#endif // wxUSE_STATBOX
#if wxUSE_BUTTON
class WXDLLEXPORT wxStdDialogButtonSizer: public wxBoxSizer
{
public:
@@ -667,7 +669,7 @@ public:
// I wouldn't add any other hacks like that into here,
// but this one I can see being useful.
void Finalise();
wxButton *GetAffirmativeButton() const { return m_buttonAffirmative; }
wxButton *GetApplyButton() const { return m_buttonApply; }
wxButton *GetNegativeButton() const { return m_buttonNegative; }
@@ -680,12 +682,14 @@ protected:
wxButton *m_buttonNegative; // wxID_NO
wxButton *m_buttonCancel;
wxButton *m_buttonHelp;
private:
DECLARE_CLASS(wxStdDialogButtonSizer)
DECLARE_NO_COPY_CLASS(wxStdDialogButtonSizer)
};
#endif // wxUSE_STATBOX
#if WXWIN_COMPATIBILITY_2_4
// NB: wxBookCtrlSizer and wxNotebookSizer are deprecated, they
// don't do anything. wxBookCtrlBase::DoGetBestSize does the job now.