summaryrefslogtreecommitdiff
path: root/cui/source/options/optjsearch.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cui/source/options/optjsearch.hxx')
-rw-r--r--cui/source/options/optjsearch.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/cui/source/options/optjsearch.hxx b/cui/source/options/optjsearch.hxx
index 6a1c91d42ae9..85976b0d76dc 100644
--- a/cui/source/options/optjsearch.hxx
+++ b/cui/source/options/optjsearch.hxx
@@ -64,10 +64,10 @@ private:
CheckBox aIgnoreWhitespace;
CheckBox aIgnoreMiddleDot;
- INT32 nTransliterationFlags;
- BOOL bSaveOptions;
+ sal_Int32 nTransliterationFlags;
+ sal_Bool bSaveOptions;
- INT32 GetTransliterationFlags_Impl();
+ sal_Int32 GetTransliterationFlags_Impl();
protected:
SvxJSearchOptionsPage( Window* pParent, const SfxItemSet& rSet );
@@ -78,13 +78,13 @@ public:
static SfxTabPage* Create( Window* pParent, const SfxItemSet& rSet );
virtual void Reset( const SfxItemSet& rSet );
- virtual BOOL FillItemSet( SfxItemSet& rSet );
+ virtual sal_Bool FillItemSet( SfxItemSet& rSet );
- BOOL IsSaveOptions() const { return bSaveOptions; }
- void EnableSaveOptions( BOOL bVal ) { bSaveOptions = bVal; }
+ sal_Bool IsSaveOptions() const { return bSaveOptions; }
+ void EnableSaveOptions( sal_Bool bVal ) { bSaveOptions = bVal; }
- INT32 GetTransliterationFlags() const { return nTransliterationFlags; }
- void SetTransliterationFlags( INT32 nSettings );
+ sal_Int32 GetTransliterationFlags() const { return nTransliterationFlags; }
+ void SetTransliterationFlags( sal_Int32 nSettings );
};
//////////////////////////////////////////////////////////////////////
>2017-03-03convert SfxEnumItem to type-safe template classNoel Grandin 2016-10-28update unnecessaryoverride plugin to find pure forwarding methodsNoel Grandin 2016-08-19Resolves: coverity#705366 Mixing enum typesCaolán McNamara 2016-01-31tools: rename FontUnderline to FontLineStyleChris Sherlock 2015-11-115th step to remove tools/rtti.hxxOliver Specht 2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann 2015-10-21com::sun::star->css in include/editengNoel Grandin 2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann 2015-08-14remove default value from SfxPoolItem::PutValueNoel Grandin 2014-07-29simplify return argument of SfxPoolItem::GetPresentationNoel Grandin 2014-04-04svl/eitem.hxx: sal_Bool->boolNoel Grandin 2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann 2014-03-26Split TYPEINFO into plain and TYPEINFO_OVERRIDEStephan Bergmann 2014-02-20svl: sal_Bool -> boolStephan Bergmann 2014-01-10SfxPoolItem::operator ==, != should return boolStephan Bergmann 2013-10-23fixincludeguards.sh: include/editengThomas Arnhold 2013-04-23execute move of global headersBjoern Michaelsen