summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-08 04:51:28 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-08 04:51:28 +0100
commit8035a3af260729ee47a1d805811e17d06d035e3d (patch)
treee3040a30673497421525ea639add7f7b31a55a65 /cui
parentb5d7f9208294803cc7a2dfb4c2a4cb17d7739947 (diff)
some further OUString cleanup
Change-Id: I13eb94092e29ececc9fbf494074acde5f893b605
Diffstat (limited to 'cui')
-rw-r--r--cui/source/customize/cfg.cxx4
-rw-r--r--cui/source/options/optgdlg.cxx2
-rw-r--r--cui/source/tabpages/grfpage.cxx2
3 files changed, 4 insertions, 4 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);
diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx
index f6d793494e69..86cdb0d125a6 100644
--- a/cui/source/options/optgdlg.cxx
+++ b/cui/source/options/optgdlg.cxx
@@ -625,7 +625,7 @@ OfaViewTabPage::OfaViewTabPage(Window* pParent, const SfxItemSet& rSet)
{
::rtl::OUString aAutoStr( m_pIconStyleLB->GetEntry( 0 ) );
- aAutoStr += OUString(" (" );
+ aAutoStr += " (";
// prefer the icon style set by the desktop native widgets modules
sal_uLong nAutoStyle = aStyleSettings.GetPreferredSymbolsStyle();
diff --git a/cui/source/tabpages/grfpage.cxx b/cui/source/tabpages/grfpage.cxx
index 8e4a46c065f5..fdf5e77393c2 100644
--- a/cui/source/tabpages/grfpage.cxx
+++ b/cui/source/tabpages/grfpage.cxx
@@ -675,7 +675,7 @@ void SvxGrfCropPage::GraphicHasChanged( sal_Bool bFound )
((float)aOrigSize.Width()/TWIP_TO_INCH)+0.5));
sal_Int32 ay = sal_Int32(floor((float)aOrigPixelSize.Height() /
((float)aOrigSize.Height()/TWIP_TO_INCH)+0.5));
- sTemp += OUString(" ");
+ sTemp += " ";
sTemp += CUI_RESSTR( STR_PPI );
OUString sPPI = OUString::valueOf(ax);
if (abs(ax - ay) > 1) {