Kaydet (Commit) c6665a1a authored tarafından Matteo Casalin's avatar Matteo Casalin

Avoid getTokenCount()

Change-Id: I1f6468e1050924b0c6f6971ad6276932a3c91f75
üst 4a514e21
...@@ -208,7 +208,7 @@ void ODsnTypeCollection::extractHostNamePort(const OUString& _rDsn,OUString& _sD ...@@ -208,7 +208,7 @@ void ODsnTypeCollection::extractHostNamePort(const OUString& _rDsn,OUString& _sD
_rsHostname = sUrl.getToken(0,':'); _rsHostname = sUrl.getToken(0,':');
} }
if ( !_rsHostname.isEmpty() ) if ( !_rsHostname.isEmpty() )
_rsHostname = _rsHostname.getToken(comphelper::string::getTokenCount(_rsHostname, '@') - 1, '@'); _rsHostname = _rsHostname.copy(_rsHostname.lastIndexOf('@')+1);
_sDatabaseName = sUrl.getToken(nUrlTokens - 1, ':'); _sDatabaseName = sUrl.getToken(nUrlTokens - 1, ':');
} }
else if ( _rDsn.startsWithIgnoreAsciiCase("sdbc:address:ldap:") ) else if ( _rDsn.startsWithIgnoreAsciiCase("sdbc:address:ldap:") )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment