]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/tabctrl.cpp
Added back shlwapi.h inclusion with comment
[wxWidgets.git] / src / msw / tabctrl.cpp
index 686f25018d06ef00ecedc1c83481338054d02f05..ed230ba329af0f479f2a9d7d0be82b8013ff5c18 100644 (file)
@@ -297,7 +297,7 @@ bool wxTabCtrl::InsertItem(int item, const wxString& text, int imageId, void* da
     TC_ITEM tcItem;
     tcItem.mask = TCIF_PARAM;
     tcItem.lParam = (long) data;
-    if (text != wxEmptyString)
+    if (!text.empty())
     {
         tcItem.mask |= TCIF_TEXT;
         wxStrcpy(buf, (const wxChar*) text);