summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-06-29 09:45:49 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-06-29 09:53:41 +0200
commite67c21ee0696cde7538016a813a5cbf39fb803b0 (patch)
tree841b1b4914a60a4de951ae7a39de7249762725cc /rsc
parent34dc6baf2c61f4127e6d8d89c92d8e4c37684ff5 (diff)
Search for char instead of 1 char long string, when possible.
follow-up of a7674482254ee996b1c4fee60f3064778be369aa Change-Id: I25f40c601454c092078307d931333af1bc1447ac
Diffstat (limited to 'rsc')
-rw-r--r--rsc/source/tools/rsctools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsc/source/tools/rsctools.cxx b/rsc/source/tools/rsctools.cxx
index 1310a915b6fc..b766ead5b62f 100644
--- a/rsc/source/tools/rsctools.cxx
+++ b/rsc/source/tools/rsctools.cxx
@@ -127,7 +127,7 @@ sal_Bool Append(const OString &rOutputSrs, const OString &rTmpFile)
/* replaces extension of a file name */
OString OutputFile(const OString &rInput, const char * pExt)
{
- sal_Int32 nSepInd = rInput.lastIndexOf(".");
+ sal_Int32 nSepInd = rInput.lastIndexOf('.');
if( nSepInd != -1 )
{