From 17da5410926f13025d46d5f0a6a77416a0b06309 Mon Sep 17 00:00:00 2001 From: Benjamin Williams Date: Mon, 24 Jul 2006 11:32:42 +0000 Subject: [PATCH] wxString::IsEmpty() => empty() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40264 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/aui/auibook.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aui/auibook.cpp b/src/aui/auibook.cpp index b29509d6ff..1792957c05 100644 --- a/src/aui/auibook.cpp +++ b/src/aui/auibook.cpp @@ -326,7 +326,7 @@ void wxAuiTabContainer::DrawTab(wxDC* dc, // if the caption is empty, measure some temporary text wxString caption = caption_text; - if (caption_text.IsEmpty()) + if (caption_text.empty()) caption = wxT("Xj"); // measure text -- 2.50.0