]> git.saurik.com Git - wxWidgets.git/commitdiff
Small wxString usage fix.
authorWłodzimierz Skiba <abx@abx.art.pl>
Mon, 23 May 2005 10:48:27 +0000 (10:48 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Mon, 23 May 2005 10:48:27 +0000 (10:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34290 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/regtest/regtest.cpp

index 8519a7cbdb583db517a388a06a00edaf1a119b23..d350aba026eedcc347f1c1b55b19a8bba3ca18b3 100644 (file)
@@ -964,7 +964,7 @@ bool RegTreeCtrl::TreeNode::OnExpand()
     while ( bCont )
     {
         wxString strItem;
-        if (str.IsEmpty())
+        if (str.empty())
             strItem = _T("<default>");
         else
             strItem = str;