]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/regex.cpp
wxDFB: implemented Raise() and Lower() for TLWs
[wxWidgets.git] / src / common / regex.cpp
index 7879616899596c6fb642e7ec517ca256b7602b8f..f6ca8782913e64e3ec4ddfe6bf99610974e299b8 100644 (file)
@@ -282,12 +282,14 @@ bool wxRegExImpl::Compile(const wxString& expr, int flags)
     // translate our flags to regcomp() ones
     int flagsRE = 0;
     if ( !(flags & wxRE_BASIC) )
+    {
 #ifndef WX_NO_REGEX_ADVANCED
         if (flags & wxRE_ADVANCED)
             flagsRE |= REG_ADVANCED;
         else
 #endif
             flagsRE |= REG_EXTENDED;
+    }
     if ( flags & wxRE_ICASE )
         flagsRE |= REG_ICASE;
     if ( flags & wxRE_NOSUB )