]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/regex.h
changed wxSystemSettings::HasFrameDecorations to more general GetCapability(index)
[wxWidgets.git] / include / wx / regex.h
index 8fb775da6d1a397972cd3ebb54c62cefc0b33948..946d106cb2d15c0e2e1a238ad1240b07eb378587 100644 (file)
@@ -26,12 +26,6 @@ class WXDLLEXPORT wxString;
 // constants
 // ----------------------------------------------------------------------------
 
-// max number of subexpression matches, the default should be big enough for
-// all uses but may be a bit wasteful
-#ifndef WX_REGEX_MAXMATCHES
-    #define WX_REGEX_MAXMATCHES 1024
-#endif
-
 // flags for regex compilation: these can be used with Compile()
 enum
 {
@@ -148,6 +142,11 @@ private:
 
     // the real guts of this class
     wxRegExImpl *m_impl;
+
+    // as long as the class wxRegExImpl is not ref-counted,
+    // instances of the handle wxRegEx must not be copied.
+    wxRegEx(const wxRegEx&);
+    wxRegEx &operator=(const wxRegEx&);
 };
 
 #endif // wxUSE_REGEX