]> git.saurik.com Git - wxWidgets.git/commitdiff
Unicode compilation fix (patch 81006)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 21 Sep 2003 11:02:39 +0000 (11:02 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 21 Sep 2003 11:02:39 +0000 (11:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23770 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/wizard.cpp

index c3bddea1d192ffdd3327c5a6fcac9772a54e631f..97da14ec8b9bccaed54b88caf9c7d557462e14a3 100644 (file)
@@ -349,7 +349,10 @@ void wxWizard::AddStaticLine(wxBoxSizer *mainColumn)
 
 void wxWizard::AddBackNextPair(wxBoxSizer *buttonRow)
 {
-    wxASSERT_MSG(m_btnNext!=0 && m_btnPrev!=0, "You must create the buttons first before calling wxWizard::AddBackNextPair");
+    wxASSERT_MSG( m_btnNext && m_btnPrev,
+                  _T("You must create the buttons before calling ")
+                  _T("wxWizard::AddBackNextPair") );
+
     // margin between Back and Next buttons
 #ifdef __WXMAC__
     static const int BACKNEXT_MARGIN = 10;