COMP: Remove reference to vtksys. The unmangled kwsys name should be used in this source.
This commit is contained in:
parent
f18ae2234c
commit
cc80c4e285
|
@ -4265,7 +4265,7 @@ bool SystemTools::ParseURLProtocol( const kwsys_stl::string& URL,
|
||||||
// match 0 entire url
|
// match 0 entire url
|
||||||
// match 1 protocol
|
// match 1 protocol
|
||||||
// match 2 dataglom following 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;
|
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& dataport,
|
||||||
kwsys_stl::string& database )
|
kwsys_stl::string& database )
|
||||||
{
|
{
|
||||||
vtksys::RegularExpression urlRe( VTK_URL_PROTOCOL_REGEX );
|
kwsys::RegularExpression urlRe( VTK_URL_PROTOCOL_REGEX );
|
||||||
if ( ! urlRe.find( URL ) ) return false;
|
if ( ! urlRe.find( URL ) ) return false;
|
||||||
|
|
||||||
// match 0 URL
|
// match 0 URL
|
||||||
|
|
Loading…
Reference in New Issue