summaryrefslogtreecommitdiff
path: root/lingucomponent/source/spellcheck
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-01-30 16:06:08 +0100
committerLuboš Luňák <l.lunak@suse.cz>2013-01-30 16:08:02 +0100
commita05f2eef8ff1a88cbbd88ddafbb954e63719baa0 (patch)
treee40c0f80aa27832b42e068e784602657a991befb /lingucomponent/source/spellcheck
parent0701e1ab56dd185fd6fc39012c5a798ca4b77f3f (diff)
do not use removed A2OU macro
Change-Id: I1af159daed382e78f8c9933af10df9dba2010193
Diffstat (limited to 'lingucomponent/source/spellcheck')
-rw-r--r--lingucomponent/source/spellcheck/macosxspell/macspellimp.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm
index 3149c02d6ddd..c2ca43895f91 100644
--- a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm
+++ b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm
@@ -450,7 +450,7 @@ OUString SAL_CALL
throw(RuntimeException)
{
MutexGuard aGuard( GetLinguMutex() );
- return A2OU( "Mac OS X Spell Checker" );
+ return OUString( "Mac OS X Spell Checker" );
}
@@ -563,7 +563,7 @@ Sequence< OUString > MacSpellChecker::getSupportedServiceNames_Static()
MutexGuard aGuard( GetLinguMutex() );
Sequence< OUString > aSNS( 1 ); // auch mehr als 1 Service moeglich
- aSNS.getArray()[0] = A2OU( SN_SPELLCHECKER );
+ aSNS.getArray()[0] = SN_SPELLCHECKER;
return aSNS;
}