diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-10 12:37:04 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-11 09:26:28 +0200 |
commit | 2962ceec4b96758bec7e7a0390d5ec60e3ce708f (patch) | |
tree | 54b1f57a5ee59babeef28b2f624024cecef8f4c3 /extensions | |
parent | b5303563b785115075b5f9b7b4abccd8f9d916e2 (diff) |
remove some unnecessary temporary OUStrings
found with:
git grep -nP 'OUString\(\s*\w+\s*\)' | grep -v new | grep -v return
Change-Id: I923109b4339210aed2639e423fbc4d5f19233f02
Reviewed-on: https://gerrit.libreoffice.org/37463
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/dbpilots/listcombowizard.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/dbpilots/listcombowizard.cxx b/extensions/source/dbpilots/listcombowizard.cxx index 6f9386e81efb..d935d0a98b0c 100644 --- a/extensions/source/dbpilots/listcombowizard.cxx +++ b/extensions/source/dbpilots/listcombowizard.cxx @@ -190,9 +190,9 @@ namespace dbp { // build the statement to set as list source OUString sStatement = "SELECT DISTINCT " + - OUString( getSettings().sListContentField ) + - " FROM " + OUString( getSettings().sListContentTable ); - getContext().xObjectModel->setPropertyValue( "ListSource", makeAny(OUString(sStatement))); + getSettings().sListContentField + + " FROM " + getSettings().sListContentTable; + getContext().xObjectModel->setPropertyValue( "ListSource", makeAny(sStatement)); } // the bound field |