diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-08 04:51:28 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-08 04:51:28 +0100 |
commit | 8035a3af260729ee47a1d805811e17d06d035e3d (patch) | |
tree | e3040a30673497421525ea639add7f7b31a55a65 /cui/source/customize | |
parent | b5d7f9208294803cc7a2dfb4c2a4cb17d7739947 (diff) |
some further OUString cleanup
Change-Id: I13eb94092e29ececc9fbf494074acde5f893b605
Diffstat (limited to 'cui/source/customize')
-rw-r--r-- | cui/source/customize/cfg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx index 05a28f860268..0392d1f250a6 100644 --- a/cui/source/customize/cfg.cxx +++ b/cui/source/customize/cfg.cxx @@ -3111,7 +3111,7 @@ SvxToolbarConfigPage::SvxToolbarConfigPage( // default toolbar to select is standardbar unless a different one // has been passed in m_aURLToSelect = OUString(ITEM_TOOLBAR_URL ); - m_aURLToSelect += OUString("standardbar" ); + m_aURLToSelect += "standardbar"; const SfxPoolItem* pItem = rSet.GetItem( rSet.GetPool()->GetWhich( SID_CONFIG ) ); @@ -3662,7 +3662,7 @@ void SvxToolbarConfigPage::Init() // in future select the default toolbar: Standard m_aURLToSelect = OUString(ITEM_TOOLBAR_URL ); - m_aURLToSelect += OUString("standardbar" ); + m_aURLToSelect += "standardbar"; } aTopLevelListBox.SelectEntryPos(nPos, sal_True); |