diff options
Diffstat (limited to 'extensions/source/plugin/base/nfuncs.cxx')
-rw-r--r-- | extensions/source/plugin/base/nfuncs.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/plugin/base/nfuncs.cxx b/extensions/source/plugin/base/nfuncs.cxx index c14907b5083f..d06c5b808927 100644 --- a/extensions/source/plugin/base/nfuncs.cxx +++ b/extensions/source/plugin/base/nfuncs.cxx @@ -148,7 +148,7 @@ static ::rtl::OString normalizeURL( XPlugin_Impl* plugin, const ::rtl::OString& int nPos; if( ( nPos = aLoadURL.indexOf( "://" ) ) != -1 ) { - if( url.getLength() && (url.getStr()[ 0 ] == '/' || url.indexOf( '/' ) != -1) ) + if( !url.isEmpty() && (url.getStr()[ 0 ] == '/' || url.indexOf( '/' ) != -1) ) { // this means same server but new path nPos = aLoadURL.indexOf( '/', nPos+3 ); @@ -275,7 +275,7 @@ extern "C" { return NPERR_INVALID_INSTANCE_ERROR; OString aLoadURL = normalizeURL( pImpl, url ); - if( !aLoadURL.getLength() ) + if( aLoadURL.isEmpty() ) return NPERR_INVALID_URL; AsynchronousGetURL* pAsync = new AsynchronousGetURL(); |