]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/dialog.cpp
Support mouse click through as otherwise clicking inside an inactive window causes...
[wxWidgets.git] / src / os2 / dialog.cpp
index 2e5ff9f96f7999b6a274fce760ff74ce0372527b..a8f0d6f9d154bb41944d5443e14fa02b05c1e21b 100644 (file)
@@ -224,7 +224,7 @@ bool wxDialog::Show( bool bShow )
 //
 int wxDialog::ShowModal()
 {
-    wxASSERT_MSG( !IsModal(), _T("wxDialog::ShowModal() reentered?") );
+    wxASSERT_MSG( !IsModal(), wxT("wxDialog::ShowModal() reentered?") );
 
     m_endModalCalled = false;
 
@@ -288,7 +288,7 @@ void wxDialog::EndModal(
   int                               nRetCode
 )
 {
-    wxASSERT_MSG( IsModal(), _T("EndModal() called for non modal dialog") );
+    wxASSERT_MSG( IsModal(), wxT("EndModal() called for non modal dialog") );
 
     m_endModalCalled = true;
     SetReturnCode(nRetCode);