diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-16 15:29:31 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-01-17 09:16:50 +0200 |
commit | 13df6667565421550a884b58af29b3ce4cc745c3 (patch) | |
tree | 9026cf56d27ed88d020e0898a6e658f96e8c94be /sc/inc/cellsuno.hxx | |
parent | 94e75e3c976653204a44a2eb5aff71caf816bdf4 (diff) |
sal_Bool->bool
Change-Id: Ie0849ac28cba7b0d00c7793019d9829d2d0001b0
Diffstat (limited to 'sc/inc/cellsuno.hxx')
-rw-r--r-- | sc/inc/cellsuno.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/cellsuno.hxx b/sc/inc/cellsuno.hxx index e4a245fa78c7..74cd07cc7b05 100644 --- a/sc/inc/cellsuno.hxx +++ b/sc/inc/cellsuno.hxx @@ -188,7 +188,7 @@ private: sal_Int64 nObjectId; sal_Bool bChartColAsHdr; sal_Bool bChartRowAsHdr; - sal_Bool bCursorOnly; + bool bCursorOnly; sal_Bool bGotDataChangedHint; XModifyListenerArr_Impl aValueListeners; @@ -255,8 +255,8 @@ public: void SetNewRange(const ScRange& rNew); // for cursor void SetNewRanges(const ScRangeList& rNew); - void SetCursorOnly(sal_Bool bSet); - sal_Bool IsCursorOnly() const { return bCursorOnly; } + void SetCursorOnly(bool bSet); + bool IsCursorOnly() const { return bCursorOnly; } // XSheetOperation virtual double SAL_CALL computeFunction( ::com::sun::star::sheet::GeneralFunction nFunction ) |