]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/control.cpp
Improve validation of wxCheckBox styles.
[wxWidgets.git] / src / gtk1 / control.cpp
index 4e0db419e601faadbe2edf87b5c5bdeced8bb951..42167081751742301fb32e1527de94ee3b9f6059 100644 (file)
@@ -134,7 +134,7 @@ wxString wxControl::GTKRemoveMnemonics(const wxString& label)
     {
         wxChar ch = label[i];
 
-        if ( ch == _T('&') )
+        if ( ch == wxT('&') )
         {
             if ( i == len - 1 )
             {
@@ -144,7 +144,7 @@ wxString wxControl::GTKRemoveMnemonics(const wxString& label)
             }
 
             ch = label[++i]; // skip '&' itself
-            if ( ch == _T('&') )
+            if ( ch == wxT('&') )
             {
                 // special case: "&&" is not a mnemonic at all but just an
                 // escaped "&"