summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/SystemTools.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/kwsys/SystemTools.cxx')
-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