]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/tbarbase.cpp
compile warnings, M_BITMAPDATA privatized
[wxWidgets.git] / src / common / tbarbase.cpp
index e9b2c110ec0e0f2d39493f4261d654c05d90fe0f..f944cdd209f9d6659c79ae02b8d6908338b952c4 100644 (file)
@@ -563,7 +563,7 @@ bool wxToolBarBase::GetToolEnabled(int id) const
 wxString wxToolBarBase::GetToolShortHelp(int id) const
 {
     wxToolBarToolBase *tool = FindById(id);
-    wxCHECK_MSG( tool, _T(""), _T("no such tool") );
+    wxCHECK_MSG( tool, wxEmptyString, _T("no such tool") );
 
     return tool->GetShortHelp();
 }
@@ -571,7 +571,7 @@ wxString wxToolBarBase::GetToolShortHelp(int id) const
 wxString wxToolBarBase::GetToolLongHelp(int id) const
 {
     wxToolBarToolBase *tool = FindById(id);
-    wxCHECK_MSG( tool, _T(""), _T("no such tool") );
+    wxCHECK_MSG( tool, wxEmptyString, _T("no such tool") );
 
     return tool->GetLongHelp();
 }