diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-25 12:35:44 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-25 12:38:33 +0200 |
commit | fce88d8ff087bdc6b14649e15e1123892c5d414f (patch) | |
tree | bf8de1d9904d66e8542c926d3b5982c884ff9ff9 /basctl | |
parent | 8007417c318140d74b87ec5abcf835f4a2ba9682 (diff) |
loplugin:stringconstant: Flag more inefficiencies
Change-Id: I7c79445bfa1536706561752da107090599ef26a2
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/brkdlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/brkdlg.cxx b/basctl/source/basicide/brkdlg.cxx index eff2c10a4379..4c50b69160d7 100644 --- a/basctl/source/basicide/brkdlg.cxx +++ b/basctl/source/basicide/brkdlg.cxx @@ -43,7 +43,7 @@ bool lcl_ParseText(OUString const &rText, size_t& rLineNr ) // number n. (Maybe it would be better to ignore all whitespace instead // of just spaces.) OUString aText( - rText.replaceAll(" ", OUString())); + rText.replaceAll(" ", "")); if (aText.isEmpty()) return false; sal_Unicode cFirst = aText[0]; |