summaryrefslogtreecommitdiff
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
commita534643c95475c096f233f3865d608aa25f2dd96 (patch)
treea67adaf4ff7b8067e3f17f6776b1da542d81b62a
parentb5b672a51cdb5a38656cb674336dfeb9189b818f (diff)
Use RTL_CONSTASCII_USTRINGPARAM macro
-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 469c6ea7d..e1ddae065 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 )