applied patch from Xavier Nodet implementing better handling of subexpressions array in wxRegEx

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11565 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-09-06 17:21:00 +00:00
parent 567f21d2cd
commit 59078e629d
2 changed files with 30 additions and 21 deletions

View 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