X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae3c17b4013e80b99976c750c19fca47729517f6..ae7e6cc946f85a9f12ab97f5860bf8d6235ec12a:/interface/wx/regex.h?ds=sidebyside diff --git a/interface/wx/regex.h b/interface/wx/regex.h index a61eaf28a4..147ea7622e 100644 --- a/interface/wx/regex.h +++ b/interface/wx/regex.h @@ -57,7 +57,6 @@ enum /** @class wxRegEx - @wxheader{regex.h} wxRegEx represents a regular expression. This class provides support for regular expressions matching and also replacement. @@ -199,7 +198,7 @@ public: May only be called after successful call to Compile(). */ bool Matches(const wxChar* text, int flags = 0) const; - const bool Matches(const wxChar* text, int flags, size_t len) const; + bool Matches(const wxChar* text, int flags, size_t len) const; //@} /** @@ -211,7 +210,7 @@ public: May only be called after successful call to Compile(). */ - const bool Matches(const wxString& text, int flags = 0) const; + bool Matches(const wxString& text, int flags = 0) const; /** Replaces the current regular expression in the string pointed to by