summaryrefslogtreecommitdiff
path: root/sw/source/ui
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-03-31 21:54:04 +0200
committerMatteo Casalin <matteo.casalin@yahoo.com>2014-04-06 22:12:48 +0200
commita0e0d5f9cb280178cdcf8eed40e5775b3e9cf1ab (patch)
tree2a2cc368df5694e660073fbe41d101cef14850a3 /sw/source/ui
parent060d2e0e997c603a341e29eeac7f4fa3032f056a (diff)
OUString: remove temporaries and unneeded conversions
Change-Id: I99d876bb37b3ac781a0686fe27c6a9c52aaf26b5
Diffstat (limited to 'sw/source/ui')
-rw-r--r--sw/source/ui/envelp/label1.cxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/sw/source/ui/envelp/label1.cxx b/sw/source/ui/envelp/label1.cxx
index ccbda4de8eac..a1499d8c21d7 100644
--- a/sw/source/ui/envelp/label1.cxx
+++ b/sw/source/ui/envelp/label1.cxx
@@ -71,7 +71,7 @@ void SwLabDlg::_ReplaceGroup( const OUString &rMake )
{
// Remove old entries
pRecs->erase(pRecs->begin() + 1, pRecs->end());
- aLabelsCfg.FillLabels(OUString(rMake), *pRecs);
+ aLabelsCfg.FillLabels(rMake, *pRecs);
aLstGroup = rMake;
}
@@ -134,8 +134,7 @@ SwLabDlg::SwLabDlg(Window* pParent, const SfxItemSet& rSet,
// Read user label from writer.cfg
SwLabItem aItem((const SwLabItem&)rSet.Get( FN_LABEL ));
SwLabRec* pRec = new SwLabRec;
- const OUString aTmp( SW_RES( STR_CUSTOM ) );
- pRec->aMake = pRec->aType = aTmp;
+ pRec->aMake = pRec->aType = SW_RESSTR( STR_CUSTOM );
pRec->SetFromItem( aItem );
bool bDouble = false;
@@ -201,7 +200,7 @@ SwLabRec* SwLabDlg::GetRecord(const OUString &rRecName, sal_Bool bCont)
{
SwLabRec* pRec = NULL;
bool bFound = false;
- OUString sCustom(SW_RES(STR_CUSTOM));
+ const OUString sCustom(SW_RES(STR_CUSTOM));
const size_t nCount = Recs().size();
for (size_t i = 0; i < nCount; ++i)
@@ -326,8 +325,8 @@ IMPL_LINK( SwLabPage, DatabaseHdl, ListBox *, pListBox )
IMPL_LINK_NOARG(SwLabPage, FieldHdl)
{
- OUString aStr("<" + OUString(m_pDatabaseLB->GetSelectEntry()) + "." +
- OUString(m_pTableLB->GetSelectEntry()) + "." +
+ OUString aStr("<" + m_pDatabaseLB->GetSelectEntry() + "." +
+ m_pTableLB->GetSelectEntry() + "." +
(m_pTableLB->GetEntryData(m_pTableLB->GetSelectEntryPos()) == 0 ? OUString("0") : OUString("1")) + "." +
m_pDBFieldLB->GetSelectEntry() + ">");
m_pWritingEdit->ReplaceSelected(aStr);