summaryrefslogtreecommitdiff
path: root/desktop/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-12-10 09:06:31 +0200
committerNoel Grandin <noel@peralex.com>2013-12-12 13:15:24 +0200
commit7e72b9de5545ac3baaa44e2d7f11c2872b1677a7 (patch)
tree32365ce7da257a8973d5d9e0c71e67b18e7cf489 /desktop/source
parentfb847101519ad74c02183672c04ebf1d700aae83 (diff)
use OUString::endsWith where possible
Change-Id: Ie2b68f79a7f9a54899f1d727f9a1fc7cfb14d90a
Diffstat (limited to 'desktop/source')
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_sfwk.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx b/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx
index 9af1ef1c3094..80510373effe 100644
--- a/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx
+++ b/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx
@@ -143,7 +143,7 @@ BackendImpl::PackageImpl::PackageImpl(
initPackageHandler();
sal_Int32 segmEnd = url.getLength();
- if (!url.isEmpty() && url[ url.getLength() - 1 ] == '/')
+ if ( url.endsWith("/") )
--segmEnd;
sal_Int32 segmStart = (url.lastIndexOf( '/', segmEnd ) + 1);
if (segmStart < 0)