diff options
Diffstat (limited to 'sc/inc/detdata.hxx')
-rw-r--r-- | sc/inc/detdata.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/detdata.hxx b/sc/inc/detdata.hxx index 31055c270fbf..42798af66bba 100644 --- a/sc/inc/detdata.hxx +++ b/sc/inc/detdata.hxx @@ -83,10 +83,10 @@ SV_DECL_PTRARR_DEL(ScDetOpArr_Impl, ScDetOpDataPtr, SC_DETOP_GROW, SC_DETOP_GROW class ScDetOpList : public ScDetOpArr_Impl { - BOOL bHasAddError; // updated in Append + sal_Bool bHasAddError; // updated in Append public: - ScDetOpList() : bHasAddError(FALSE) {} + ScDetOpList() : bHasAddError(sal_False) {} ScDetOpList(const ScDetOpList& rList); ~ScDetOpList() {} @@ -94,11 +94,11 @@ public: void UpdateReference( ScDocument* pDoc, UpdateRefMode eUpdateRefMode, const ScRange& rRange, SCsCOL nDx, SCsROW nDy, SCsTAB nDz ); - BOOL operator==( const ScDetOpList& r ) const; // fuer Ref-Undo + sal_Bool operator==( const ScDetOpList& r ) const; // fuer Ref-Undo void Append( ScDetOpData* pData ); - BOOL HasAddError() const { return bHasAddError; } + sal_Bool HasAddError() const { return bHasAddError; } }; |