summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-12-05 18:13:53 (GMT)
committerBrad King <brad.king@kitware.com>2007-12-05 18:13:53 (GMT)
commitcc80c4e285d1e9b66557088f079504a0581b1813 (patch)
tree548cc82125ea5874dae53879d94f892cb5da454e
parentf18ae2234c6fecedd440670e9651fb06761049df (diff)
downloadCMake-cc80c4e285d1e9b66557088f079504a0581b1813.zip
CMake-cc80c4e285d1e9b66557088f079504a0581b1813.tar.gz
CMake-cc80c4e285d1e9b66557088f079504a0581b1813.tar.bz2
COMP: Remove reference to vtksys. The unmangled kwsys name should be used in this source.
-rw-r--r--Source/kwsys/SystemTools.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx
index 3d47c98..edf360e 100644
--- a/Source/kwsys/SystemTools.cxx
+++ b/Source/kwsys/SystemTools.cxx
@@ -4265,7 +4265,7 @@ bool SystemTools::ParseURLProtocol( const kwsys_stl::string& URL,
// match 0 entire url
// match 1 protocol
// match 2 dataglom following protocol://
- vtksys::RegularExpression urlRe( VTK_URL_PROTOCOL_REGEX );
+ kwsys::RegularExpression urlRe( VTK_URL_PROTOCOL_REGEX );
if ( ! urlRe.find( URL ) ) return false;
@@ -4284,7 +4284,7 @@ bool SystemTools::ParseURL( const kwsys_stl::string& URL,
kwsys_stl::string& dataport,
kwsys_stl::string& database )
{
- vtksys::RegularExpression urlRe( VTK_URL_PROTOCOL_REGEX );
+ kwsys::RegularExpression urlRe( VTK_URL_PROTOCOL_REGEX );
if ( ! urlRe.find( URL ) ) return false;
// match 0 URL