]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/configtool/src/utils.h
Added window styles to wxToolBar handler.
[wxWidgets.git] / utils / configtool / src / utils.h
index af00ed32736257db542e4930f08e46f911367cd5..587bc5b376385a62cf3983b1384cecfe448a0dd7 100644 (file)
@@ -144,7 +144,7 @@ public:
     // enabled/disabled
     int GetStateCount() const { return m_maxStates; };
 
-    void SetStateCount(int count) { m_maxStates; }
+    void SetStateCount(int count) { m_maxStates = count; }
     int GetIconId(int state, bool enabled = TRUE) const;
     void SetIconId(int state, bool enabled, int iconId);
 
@@ -196,5 +196,10 @@ wxOutputStream& operator <<(wxOutputStream&, long l);
 // Convert characters to HTML equivalents
 wxString ctEscapeHTMLCharacters(const wxString& str);
 
+// Match 'matchText' against 'matchAgainst', optionally constraining to
+// whole-word only.
+bool ctMatchString(const wxString& matchAgainst, const wxString& matchText, bool wholeWordOnly);
+
+
 #endif
     // _AP_UTILS_H_