do not use removed A2OU macro

Change-Id: I1af159daed382e78f8c9933af10df9dba2010193
This commit is contained in:
Luboš Luňák
2013-01-30 16:06:08 +01:00
parent 0701e1ab56
commit a05f2eef8f

View File

@@ -450,7 +450,7 @@ OUString SAL_CALL
throw(RuntimeException) throw(RuntimeException)
{ {
MutexGuard aGuard( GetLinguMutex() ); 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() ); MutexGuard aGuard( GetLinguMutex() );
Sequence< OUString > aSNS( 1 ); // auch mehr als 1 Service moeglich Sequence< OUString > aSNS( 1 ); // auch mehr als 1 Service moeglich
aSNS.getArray()[0] = A2OU( SN_SPELLCHECKER ); aSNS.getArray()[0] = SN_SPELLCHECKER;
return aSNS; return aSNS;
} }