diff options
author | Xiaofei Zhang <Zhangxiaofei@openoffice.org> | 2010-11-10 13:50:33 +0800 |
---|---|---|
committer | Xiaofei Zhang <Zhangxiaofei@openoffice.org> | 2010-11-10 13:50:33 +0800 |
commit | fa1f3c352c6126b24ab5af87ea4ebea742c546c2 (patch) | |
tree | 5a5240e4969fee626bb060bd386fceb957081f90 /linguistic/source/convdic.hxx | |
parent | d0097a3f35e5e2c68d293d604a2f6f51b2d822a5 (diff) | |
parent | 3c21373571fd0cf89391502aa132c5f420cd75c6 (diff) |
removetooltypes01: #i112600# resync to DEV300_m92; remove tooltypes from xmloff, linguistic, vcl, svtools, accessibility, fpicker, uui and framework
Diffstat (limited to 'linguistic/source/convdic.hxx')
-rw-r--r-- | linguistic/source/convdic.hxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/linguistic/source/convdic.hxx b/linguistic/source/convdic.hxx index c0a22da8a1f1..a0276cb57156 100644 --- a/linguistic/source/convdic.hxx +++ b/linguistic/source/convdic.hxx @@ -52,7 +52,7 @@ class SvStream; /////////////////////////////////////////////////////////////////////////// -BOOL IsConvDic( const String &rFileURL, INT16 &nLang, sal_Int16 &nConvType ); +sal_Bool IsConvDic( const String &rFileURL, sal_Int16 &nLang, sal_Int16 &nConvType ); /////////////////////////////////////////////////////////////////////////// @@ -104,15 +104,15 @@ protected: String aMainURL; // URL to file rtl::OUString aName; - INT16 nLanguage; + sal_Int16 nLanguage; sal_Int16 nConversionType; sal_Int16 nMaxLeftCharCount; sal_Int16 nMaxRightCharCount; - BOOL bMaxCharCountIsValid; - BOOL bNeedEntries; - BOOL bIsModified; - BOOL bIsActive; - BOOL bIsReadonly; + sal_Bool bMaxCharCountIsValid; + sal_Bool bNeedEntries; + sal_Bool bIsModified; + sal_Bool bIsActive; + sal_Bool bIsReadonly; // disallow copy-constructor and assignment-operator for now ConvDic(const ConvDic &); @@ -124,9 +124,9 @@ protected: public: ConvDic( const String &rName, - INT16 nLanguage, + sal_Int16 nLanguage, sal_Int16 nConversionType, - BOOL bBiDirectional, + sal_Bool bBiDirectional, const String &rMainURL); virtual ~ConvDic(); @@ -163,7 +163,7 @@ public: static com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static() throw(); - BOOL HasEntry( const rtl::OUString &rLeftText, const rtl::OUString &rRightText ); + sal_Bool HasEntry( const rtl::OUString &rLeftText, const rtl::OUString &rRightText ); void AddEntry( const rtl::OUString &rLeftText, const rtl::OUString &rRightText ); void RemoveEntry( const rtl::OUString &rLeftText, const rtl::OUString &rRightText ); }; |