X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/42782237f24807ddb0bae1c84997e29573f5c2df..c1aa5517acff9ce039adcd6502db2e88cdd886c7:/src/os2/dialog.cpp diff --git a/src/os2/dialog.cpp b/src/os2/dialog.cpp index 5b76f3ca10..06f4e62c67 100644 --- a/src/os2/dialog.cpp +++ b/src/os2/dialog.cpp @@ -130,6 +130,8 @@ bool wxDialog::Create( wxWindow* pParent, return true; } // end of wxDialog::Create +#if WXWIN_COMPATIBILITY_2_6 + // deprecated ctor wxDialog::wxDialog(wxWindow *parent, const wxString& title, @@ -146,13 +148,13 @@ wxDialog::wxDialog(wxWindow *parent, Create(parent, wxID_ANY, title, wxPoint(x, y), wxSize(w, h), style, name); } -void wxDialog::SetModal( - bool WXUNUSED(bFlag) -) +void wxDialog::SetModal(bool WXUNUSED(bFlag)) { // nothing to do, obsolete method } // end of wxDialog::SetModal +#endif // WXWIN_COMPATIBILITY_2_6 + wxDialog::~wxDialog() { m_isBeingDeleted = true; @@ -199,11 +201,14 @@ void wxDialog::OnCharHook( // showing the dialogs // ---------------------------------------------------------------------------- +#if WXWIN_COMPATIBILITY_2_6 + bool wxDialog::IsModalShowing() const { return IsModal(); } // end of wxDialog::IsModalShowing +#endif // WXWIN_COMPATIBILITY_2_6 wxWindow *wxDialog::FindSuitableParent() const {