Use RTL_CONSTASCII_USTRINGPARAM macro

This commit is contained in:
Joost Eekhoorn 2010-10-31 17:20:13 +00:00 committed by Caolán McNamara
parent 107303bd3e
commit b3667c7895

View file

@ -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 )