From 8afd90d57c4eeb42786a176ddb0d36bf20c082c3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Mon, 23 May 2005 10:48:27 +0000 Subject: [PATCH] Small wxString usage fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34290 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/regtest/regtest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.0