Kaydet (Commit) 75be8fd6 authored tarafından Noel Grandin's avatar Noel Grandin

convert LINGUCOMPONENT module from String to OUString

Change-Id: I1a47545127885f92e9fcdbf855ca60fbbef1395d
üst 5579f143
...@@ -83,7 +83,7 @@ std::vector< SvtLinguConfigDictionaryEntry > GetOldStyleDics( const char *pDicTy ...@@ -83,7 +83,7 @@ std::vector< SvtLinguConfigDictionaryEntry > GetOldStyleDics( const char *pDicTy
return aRes; return aRes;
OUString aFormatName; OUString aFormatName;
String aDicExtension; OUString aDicExtension;
#ifdef SYSTEM_DICTS #ifdef SYSTEM_DICTS
OUString aSystemDir; OUString aSystemDir;
OUString aSystemPrefix; OUString aSystemPrefix;
...@@ -120,7 +120,7 @@ std::vector< SvtLinguConfigDictionaryEntry > GetOldStyleDics( const char *pDicTy ...@@ -120,7 +120,7 @@ std::vector< SvtLinguConfigDictionaryEntry > GetOldStyleDics( const char *pDicTy
} }
if (aFormatName.isEmpty() || aDicExtension.Len() == 0) if (aFormatName.isEmpty() || aDicExtension.isEmpty())
return aRes; return aRes;
#ifdef SYSTEM_DICTS #ifdef SYSTEM_DICTS
......
...@@ -483,7 +483,7 @@ Reference< XSpellAlternatives > ...@@ -483,7 +483,7 @@ Reference< XSpellAlternatives >
} }
// now return an empty alternative for no suggestions or the list of alternatives if some found // now return an empty alternative for no suggestions or the list of alternatives if some found
String aTmp(rWord); OUString aTmp(rWord);
xRes = SpellAlternatives::CreateSpellAlternatives( aTmp, nLang, SpellFailure::SPELLING_ERROR, aStr ); xRes = SpellAlternatives::CreateSpellAlternatives( aTmp, nLang, SpellFailure::SPELLING_ERROR, aStr );
return xRes; return xRes;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment