diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2012-07-12 22:10:17 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-07-13 16:36:04 +0200 |
commit | a7674482254ee996b1c4fee60f3064778be369aa (patch) | |
tree | dcafebf4d72d6d26ad949f0d18a000ea00f02315 /fpicker | |
parent | 0cba5e5d25bf2f30c8500e1e673a7ef9e8e8d352 (diff) |
Search for char instead of 1 char long string, when possible.
It is faster and even avoid memory allocation somtimes.
Change-Id: Ic12ff70e95953de44ef5798131150669d07a5445
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/ServerDetailsControls.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpicker/source/office/ServerDetailsControls.cxx b/fpicker/source/office/ServerDetailsControls.cxx index 69dfa4f74611..93e02f8cf520 100644 --- a/fpicker/source/office/ServerDetailsControls.cxx +++ b/fpicker/source/office/ServerDetailsControls.cxx @@ -155,7 +155,7 @@ INetURLObject HostDetailsContainer::getUrl( ) if ( nPort != m_nDefaultPort ) sUrl += ":" + rtl::OUString::valueOf( nPort ); if ( !sPath.isEmpty( ) ) - if ( sPath.indexOf( "/" ) != 0 ) + if ( sPath.indexOf( '/' ) != 0 ) sUrl += "/"; sUrl += sPath; } @@ -254,7 +254,7 @@ INetURLObject SmbDetailsContainer::getUrl( ) if ( !sShare.isEmpty( ) ) sUrl += sShare; if ( !sPath.isEmpty( ) ) - if ( sPath.indexOf( "/" ) != 0 ) + if ( sPath.indexOf( '/' ) != 0 ) sUrl += "/"; sUrl += sPath; } |