]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/scintilla/include/PropSet.h
Applied patch [ 677730 ] Menus with radio items (wxUniv)
[wxWidgets.git] / src / stc / scintilla / include / PropSet.h
index 2596349818b6293819d7ca2fe5e6264bbbb8decd..59588c62edc08fca5cfa351765eff3c5a1c258da 100644 (file)
@@ -76,10 +76,6 @@ public:
                bool ignoreCase=false, char otherSeparator='\0');
 };
 
-inline bool nonFuncChar(char ch) {
-       return strchr("\t\n\r !\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~", ch) != NULL;
-}
-
 inline bool IsAlphabetic(unsigned int ch) {
        return ((ch >= 'A') && (ch <= 'Z')) || ((ch >= 'a') && (ch <= 'z'));
 }