]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/poem/wxpoem.cpp
compilation fix for WXWIN_COMPATIBILITY_2_2 (bug 1252476)
[wxWidgets.git] / demos / poem / wxpoem.cpp
index 0b05f793cca439e2c87c4d75f00ade5daaca8892..f4a749d17cfd3a854c732bd8e30e9814d8cc4e7f 100644 (file)
@@ -486,7 +486,7 @@ void MainWindow::Search(bool ask)
     if (ask || m_searchString.empty())
     {
         wxString s = wxGetTextFromUser( _T("Enter search string"), _T("Search"), m_searchString);
-        if (s != wxEmptyString)
+        if (!s.empty())
         {
             s.MakeLower();
             m_searchString = s;