diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-15 08:48:53 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-15 09:02:34 +0200 |
commit | 86c280acb528048131d233d96ce95848c6acf683 (patch) | |
tree | 3ce31467c7d4f35d4e4cb9eda1fecbd7c6df2708 /linguistic/source/convdic.hxx | |
parent | af047fc242c51d97477c109653a98749d2af335d (diff) |
linguistic: sal_Bool->bool
Change-Id: Ifed60967edd768b16cafba3c2293149610138213
Diffstat (limited to 'linguistic/source/convdic.hxx')
-rw-r--r-- | linguistic/source/convdic.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/linguistic/source/convdic.hxx b/linguistic/source/convdic.hxx index cc333ae8e71a..a43fa918aaf7 100644 --- a/linguistic/source/convdic.hxx +++ b/linguistic/source/convdic.hxx @@ -39,7 +39,7 @@ #define SN_CONV_DICTIONARY "com.sun.star.linguistic2.ConversionDictionary" -sal_Bool IsConvDic( const OUString &rFileURL, sal_Int16 &nLang, sal_Int16 &nConvType ); +bool IsConvDic( const OUString &rFileURL, sal_Int16 &nLang, sal_Int16 &nConvType ); struct StrLT { @@ -92,11 +92,11 @@ protected: sal_Int16 nConversionType; sal_Int16 nMaxLeftCharCount; sal_Int16 nMaxRightCharCount; - sal_Bool bMaxCharCountIsValid; - sal_Bool bNeedEntries; - sal_Bool bIsModified; - sal_Bool bIsActive; - sal_Bool bIsReadonly; + bool bMaxCharCountIsValid; + bool bNeedEntries; + bool bIsModified; + bool bIsActive; + bool bIsReadonly; // disallow copy-constructor and assignment-operator for now ConvDic(const ConvDic &); @@ -110,7 +110,7 @@ public: ConvDic( const OUString &rName, sal_Int16 nLanguage, sal_Int16 nConversionType, - sal_Bool bBiDirectional, + bool bBiDirectional, const OUString &rMainURL); virtual ~ConvDic(); @@ -147,7 +147,7 @@ public: static com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static() throw(); - sal_Bool HasEntry( const OUString &rLeftText, const OUString &rRightText ); + bool HasEntry( const OUString &rLeftText, const OUString &rRightText ); void AddEntry( const OUString &rLeftText, const OUString &rRightText ); void RemoveEntry( const OUString &rLeftText, const OUString &rRightText ); }; |