]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed typo
authorRyan Norton <wxprojects@comcast.net>
Mon, 15 Dec 2003 00:14:44 +0000 (00:14 +0000)
committerRyan Norton <wxprojects@comcast.net>
Mon, 15 Dec 2003 00:14:44 +0000 (00:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24859 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/regex.cpp

index f499c1628d7befccd73c5e050e854490552f52da..2efc4a026be98d02a73c7f6ed630352f4ab8f18e 100644 (file)
@@ -188,7 +188,7 @@ bool wxRegExImpl::Compile(const wxString& expr, int flags)
 
     // compile it
 #ifdef wx_wchar
-    int errorcode = wx_regcomp(&m_RegEx, expr, expr.Length(), REG_ADVANCED);
+    int errorcode = wx_regcomp(&m_RegEx, expr, expr.Length(), flagsRE);
 #else
     int errorcode = regcomp(&m_RegEx, expr.mb_str(), flagsRE);
 #endif