From: Włodzimierz Skiba Date: Mon, 23 May 2005 10:48:27 +0000 (+0000) Subject: Small wxString usage fix. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8afd90d57c4eeb42786a176ddb0d36bf20c082c3 Small wxString usage fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34290 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/regtest/regtest.cpp b/samples/regtest/regtest.cpp index 8519a7cbdb..d350aba026 100644 --- a/samples/regtest/regtest.cpp +++ b/samples/regtest/regtest.cpp @@ -964,7 +964,7 @@ bool RegTreeCtrl::TreeNode::OnExpand() while ( bCont ) { wxString strItem; - if (str.IsEmpty()) + if (str.empty()) strItem = _T(""); else strItem = str;