diff options
author | Noel Grandin <noel@peralex.com> | 2013-09-10 16:43:31 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-09-11 09:45:41 +0200 |
commit | 5118cb286865a6617273cb1a8de963b893cdf86c (patch) | |
tree | b90d95791f904ac614790dd433ae10ea2ce36575 /linguistic/source/convdic.hxx | |
parent | 6317e4fa97278c1b9f1ab76696bf816f3605a354 (diff) |
convert linguistic/source/convdic.hxx from String to OUString
Change-Id: Id4dc56902722ea139e06e727a7090b9b10e3b347
Diffstat (limited to 'linguistic/source/convdic.hxx')
-rw-r--r-- | linguistic/source/convdic.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/linguistic/source/convdic.hxx b/linguistic/source/convdic.hxx index 375acbbca2fa..3261ffd8389a 100644 --- a/linguistic/source/convdic.hxx +++ b/linguistic/source/convdic.hxx @@ -40,7 +40,7 @@ #define SN_CONV_DICTIONARY "com.sun.star.linguistic2.ConversionDictionary" -sal_Bool IsConvDic( const String &rFileURL, sal_Int16 &nLang, sal_Int16 &nConvType ); +sal_Bool IsConvDic( const OUString &rFileURL, sal_Int16 &nLang, sal_Int16 &nConvType ); struct StrLT { @@ -87,9 +87,9 @@ protected: std::auto_ptr< PropTypeMap > pConvPropType; - String aMainURL; // URL to file - OUString aName; - sal_Int16 nLanguage; + OUString aMainURL; // URL to file + OUString aName; + sal_Int16 nLanguage; sal_Int16 nConversionType; sal_Int16 nMaxLeftCharCount; sal_Int16 nMaxRightCharCount; @@ -108,11 +108,11 @@ protected: void Save(); public: - ConvDic( const String &rName, + ConvDic( const OUString &rName, sal_Int16 nLanguage, sal_Int16 nConversionType, sal_Bool bBiDirectional, - const String &rMainURL); + const OUString &rMainURL); virtual ~ConvDic(); // XConversionDictionary |