diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-12 09:46:29 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-14 14:14:59 +0200 |
commit | 7574a78be2cb605b39ab7318e588660c27f63440 (patch) | |
tree | 68313ff76b517f985b3b9fa68b693ba89348f930 /sc/inc/inputopt.hxx | |
parent | e3b03a028538e38337bcabbe5453b043920c23a8 (diff) |
sal_Bool->bool
Change-Id: I090cfc067103e46ea7837e33734eed2da1e46bd9
Diffstat (limited to 'sc/inc/inputopt.hxx')
-rw-r--r-- | sc/inc/inputopt.hxx | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/sc/inc/inputopt.hxx b/sc/inc/inputopt.hxx index 3a46bf6c442c..b05878a28af1 100644 --- a/sc/inc/inputopt.hxx +++ b/sc/inc/inputopt.hxx @@ -26,17 +26,17 @@ class ScInputOptions { private: - sal_uInt16 nMoveDir; // enum ScDirection - sal_Bool bMoveSelection; - sal_Bool bEnterEdit; - sal_Bool bExtendFormat; - sal_Bool bRangeFinder; - sal_Bool bExpandRefs; - sal_Bool bMarkHeader; - sal_Bool bUseTabCol; - sal_Bool bTextWysiwyg; - sal_Bool bReplCellsWarn; - sal_Bool bLegacyCellSelection; + sal_uInt16 nMoveDir; // enum ScDirection + bool bMoveSelection; + bool bEnterEdit; + bool bExtendFormat; + bool bRangeFinder; + bool bExpandRefs; + bool bMarkHeader; + bool bUseTabCol; + bool bTextWysiwyg; + bool bReplCellsWarn; + bool bLegacyCellSelection; public: ScInputOptions(); @@ -47,26 +47,26 @@ public: void SetMoveDir(sal_uInt16 nNew) { nMoveDir = nNew; } sal_uInt16 GetMoveDir() const { return nMoveDir; } - void SetMoveSelection(sal_Bool bSet) { bMoveSelection = bSet; } - sal_Bool GetMoveSelection() const { return bMoveSelection; } - void SetEnterEdit(sal_Bool bSet) { bEnterEdit = bSet; } - sal_Bool GetEnterEdit() const { return bEnterEdit; } - void SetExtendFormat(sal_Bool bSet) { bExtendFormat = bSet; } - sal_Bool GetExtendFormat() const { return bExtendFormat; } - void SetRangeFinder(sal_Bool bSet) { bRangeFinder = bSet; } - sal_Bool GetRangeFinder() const { return bRangeFinder; } - void SetExpandRefs(sal_Bool bSet) { bExpandRefs = bSet; } - sal_Bool GetExpandRefs() const { return bExpandRefs; } - void SetMarkHeader(sal_Bool bSet) { bMarkHeader = bSet; } - sal_Bool GetMarkHeader() const { return bMarkHeader; } - void SetUseTabCol(sal_Bool bSet) { bUseTabCol = bSet; } - sal_Bool GetUseTabCol() const { return bUseTabCol; } - void SetTextWysiwyg(sal_Bool bSet) { bTextWysiwyg = bSet; } - sal_Bool GetTextWysiwyg() const { return bTextWysiwyg; } - void SetReplaceCellsWarn(sal_Bool bSet) { bReplCellsWarn = bSet; } - sal_Bool GetReplaceCellsWarn() const { return bReplCellsWarn; } - void SetLegacyCellSelection(sal_Bool bSet) { bLegacyCellSelection = bSet; } - sal_Bool GetLegacyCellSelection() const { return bLegacyCellSelection; } + void SetMoveSelection(bool bSet) { bMoveSelection = bSet; } + bool GetMoveSelection() const { return bMoveSelection; } + void SetEnterEdit(bool bSet) { bEnterEdit = bSet; } + bool GetEnterEdit() const { return bEnterEdit; } + void SetExtendFormat(bool bSet) { bExtendFormat = bSet; } + bool GetExtendFormat() const { return bExtendFormat; } + void SetRangeFinder(bool bSet) { bRangeFinder = bSet; } + bool GetRangeFinder() const { return bRangeFinder; } + void SetExpandRefs(bool bSet) { bExpandRefs = bSet; } + bool GetExpandRefs() const { return bExpandRefs; } + void SetMarkHeader(bool bSet) { bMarkHeader = bSet; } + bool GetMarkHeader() const { return bMarkHeader; } + void SetUseTabCol(bool bSet) { bUseTabCol = bSet; } + bool GetUseTabCol() const { return bUseTabCol; } + void SetTextWysiwyg(bool bSet) { bTextWysiwyg = bSet; } + bool GetTextWysiwyg() const { return bTextWysiwyg; } + void SetReplaceCellsWarn(bool bSet) { bReplCellsWarn = bSet; } + bool GetReplaceCellsWarn() const { return bReplCellsWarn; } + void SetLegacyCellSelection(bool bSet) { bLegacyCellSelection = bSet; } + bool GetLegacyCellSelection() const { return bLegacyCellSelection; } const ScInputOptions& operator= ( const ScInputOptions& rOpt ); }; |