projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add various selection menu items to the sample.
[wxWidgets.git]
/
src
/
os2
/
dialog.cpp
diff --git
a/src/os2/dialog.cpp
b/src/os2/dialog.cpp
index 2e5ff9f96f7999b6a274fce760ff74ce0372527b..278b22752fa23d2c937010deb1af6b80a6fba595 100644
(file)
--- a/
src/os2/dialog.cpp
+++ b/
src/os2/dialog.cpp
@@
-33,7
+33,6
@@
#define wxDIALOG_DEFAULT_WIDTH 500
#define wxDIALOG_DEFAULT_HEIGHT 500
#define wxDIALOG_DEFAULT_WIDTH 500
#define wxDIALOG_DEFAULT_HEIGHT 500
-IMPLEMENT_DYNAMIC_CLASS(wxDialog, wxTopLevelWindow)
// ----------------------------------------------------------------------------
// wxDialogModalData
// ----------------------------------------------------------------------------
// wxDialogModalData
@@
-115,7
+114,7
@@
bool wxDialog::Create( wxWindow* pParent,
//
// Must defer setting the title until after dialog is created and sized
//
//
// Must defer setting the title until after dialog is created and sized
//
- if (
!rsTitle.IsNull()
)
+ if (
!rsTitle.empty()
)
SetTitle(rsTitle);
return true;
} // end of wxDialog::Create
SetTitle(rsTitle);
return true;
} // end of wxDialog::Create
@@
-180,11
+179,7
@@
bool wxDialog::Show( bool bShow )
// and we will lose activation
m_modalData->ExitLoop();
#if 0
// and we will lose activation
m_modalData->ExitLoop();
#if 0
- if (m_pWindowDisabler)
- {
- delete m_pWindowDisabler;
- m_pWindowDisabler = NULL;
- }
+ wxDELETE(m_pWindowDisabler);
#endif
}
#endif
}
@@
-224,7
+219,7
@@
bool wxDialog::Show( bool bShow )
//
int wxDialog::ShowModal()
{
//
int wxDialog::ShowModal()
{
- wxASSERT_MSG( !IsModal(),
_
T("wxDialog::ShowModal() reentered?") );
+ wxASSERT_MSG( !IsModal(),
wx
T("wxDialog::ShowModal() reentered?") );
m_endModalCalled = false;
m_endModalCalled = false;
@@
-288,7
+283,7
@@
void wxDialog::EndModal(
int nRetCode
)
{
int nRetCode
)
{
- wxASSERT_MSG( IsModal(),
_
T("EndModal() called for non modal dialog") );
+ wxASSERT_MSG( IsModal(),
wx
T("EndModal() called for non modal dialog") );
m_endModalCalled = true;
SetReturnCode(nRetCode);
m_endModalCalled = true;
SetReturnCode(nRetCode);