From: Ryan Norton Date: Sun, 21 Dec 2003 12:22:59 +0000 (+0000) Subject: Changed GRETA compile flag - fixing output (was matching in reverse before....) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7c11dce5f2d8a6804268cabf8bd4b43ca36ac8c1 Changed GRETA compile flag - fixing output (was matching in reverse before....) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24958 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/regextest/regextest.cpp b/samples/regextest/regextest.cpp index 9caa156913..818854ee2b 100644 --- a/samples/regextest/regextest.cpp +++ b/samples/regextest/regextest.cpp @@ -18,7 +18,7 @@ //RN (Ryan Norton's) regular expression library //#define wxUSE_RNWXRE -//Greta, Microsoft Research's templated library +//GRETA, Microsoft Research's templated regex library //[http://research.microsoft.com/projects/greta/] //Install - Get it from .net powertools, put the directory in this directory //#define wxUSE_GRETA @@ -390,7 +390,7 @@ public: } } szResult2 = wxString::Format( - _("--wxRe--\nIndex:[%i]-[%i]\nString:%s\nMatch Time:%ums\nStatus:%s"), + _("--Ryan's wxRe--\nIndex:[%i]-[%i]\nString:%s\nMatch Time:%ums\nStatus:%s"), dwStartIndex2, dwEndIndex2+dwStartIndex2, szSearch.Mid(dwStartIndex2, dwEndIndex2), dwEndTime2, @@ -400,7 +400,7 @@ public: #ifdef wxUSE_GRETA std::string stdszPattern(szPattern); - rpattern Greta (stdszPattern,GLOBAL,MODE_MIXED); + rpattern Greta (stdszPattern,EXTENDED,MODE_MIXED); match_results r; std::string stdszSearch(szSearch); @@ -417,7 +417,7 @@ public: { for(i = 0; i < n; ++i) { - Greta = rpattern(stdszPattern,GLOBAL,MODE_MIXED); + Greta = rpattern(stdszPattern,EXTENDED,MODE_MIXED); Greta.match(stdszSearch, r); } }