summaryrefslogtreecommitdiff
path: root/cui/source
diff options
context:
space:
mode:
authorJoost Eekhoorn <joost.eekhoorn@gmail.com>2010-10-31 17:20:13 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-10-31 17:20:13 +0000
commitb3667c7895901efc00807ec0d11ba0fd16fe8b68 (patch)
treecde23df3312bfff3d0405603795b76547ffa8872 /cui/source
parent107303bd3e90d48d5a18d3880e5a04270f894a03 (diff)
Use RTL_CONSTASCII_USTRINGPARAM macro
Diffstat (limited to 'cui/source')
-rw-r--r--cui/source/tabpages/autocdlg.cxx4
1 files 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 )