summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-02-09 01:50:21 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-02-09 02:01:45 +0900
commit9b979c8bf13593175391efcab461a146d6f1331e (patch)
tree84f91da7d847d5e95e502432611ced55e3cb3a29 /cui
parent62e8dfa072d78c18464db9a43ffc3f7b287032b2 (diff)
Replaced String by rtl::OUString in SvxMacro
Diffstat (limited to 'cui')
-rw-r--r--cui/source/tabpages/macroass.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/tabpages/macroass.cxx b/cui/source/tabpages/macroass.cxx
index abd712328aa7..3128df1ec49c 100644
--- a/cui/source/tabpages/macroass.cxx
+++ b/cui/source/tabpages/macroass.cxx
@@ -131,7 +131,7 @@ String ConvertToUIName_Impl( SvxMacro *pMacro )
{
String aName( pMacro->GetMacName() );
String aEntry;
- if ( ! pMacro->GetLanguage().EqualsAscii("JavaScript") )
+ if ( ! pMacro->GetLanguage().equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("JavaScript")) )
{
sal_uInt16 nCount = comphelper::string::getTokenCount(aName, '.');
aEntry = aName.GetToken( nCount-1, '.' );