From b3667c7895901efc00807ec0d11ba0fd16fe8b68 Mon Sep 17 00:00:00 2001 From: Joost Eekhoorn Date: Sun, 31 Oct 2010 17:20:13 +0000 Subject: [PATCH] Use RTL_CONSTASCII_USTRINGPARAM macro --- cui/source/tabpages/autocdlg.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cui/source/tabpages/autocdlg.cxx b/cui/source/tabpages/autocdlg.cxx index aaea68cfa1ef..10797c780615 100644 --- a/cui/source/tabpages/autocdlg.cxx +++ b/cui/source/tabpages/autocdlg.cxx @@ -2730,9 +2730,9 @@ void OfaSmartTagOptionsTabPage::FillListBox( const SmartTagMgr& rSmartTagMgr ) aSmartTagCaption = aSmartTagType; const rtl::OUString aLBEntry = aSmartTagCaption + - OUString::createFromAscii(" (") + + OUString(RTL_CONSTASCII_USTRINGPARAM(" (")) + aName + - OUString::createFromAscii(")"); + OUString(RTL_CONSTASCII_USTRINGPARAM(")")); SvLBoxEntry* pEntry = m_aSmartTagTypesLB.SvTreeListBox::InsertEntry( aLBEntry ); if ( pEntry )