summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-04-08 17:14:29 (GMT)
committerBrad King <brad.king@kitware.com>2003-04-08 17:14:29 (GMT)
commit52141fb615e220bbe35ccca246fd6d7d99e3d71b (patch)
tree220b8c438ed2b91fe7f367f222f119605eb2f096
parent7dff3a7f69d1ec1e36d38903e94e433f6583d96e (diff)
downloadCMake-52141fb615e220bbe35ccca246fd6d7d99e3d71b.zip
CMake-52141fb615e220bbe35ccca246fd6d7d99e3d71b.tar.gz
CMake-52141fb615e220bbe35ccca246fd6d7d99e3d71b.tar.bz2
ERR: Fixed typo. cmRegularExpression -> RegularExpression.
-rw-r--r--Source/kwsys/SystemTools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx
index fca3f46..5dbfb1a 100644
--- a/Source/kwsys/SystemTools.cxx
+++ b/Source/kwsys/SystemTools.cxx
@@ -518,7 +518,7 @@ void SystemTools::ExpandRegistryValues(kwsys_std::string& source)
// The "[^]]" part of this expression will match any character except
// a close square-bracket. The ']' character must be the first in the
// list of characters inside the [^...] block of the expression.
- cmRegularExpression regEntry("\\[(HKEY[^]]*)\\]");
+ RegularExpression regEntry("\\[(HKEY[^]]*)\\]");
// check for black line or comment
while (regEntry.find(source))