From 6e0254772a0312bb6493513a5c1973aec00cafdf Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 12 Feb 2014 14:24:54 +0200 Subject: sal_Bool->bool Change-Id: Ic3883c0d490228ce607ac9296e45306718f03821 --- sc/inc/textuno.hxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'sc/inc/textuno.hxx') diff --git a/sc/inc/textuno.hxx b/sc/inc/textuno.hxx index 4c6ba42aedd7..7f736a70765e 100644 --- a/sc/inc/textuno.hxx +++ b/sc/inc/textuno.hxx @@ -373,10 +373,10 @@ protected: ScFieldEditEngine* pEditEngine; SvxEditEngineForwarder* pForwarder; ScCellEditSource* pOriginalSource; - sal_Bool bDataValid; - sal_Bool bInUpdate; - sal_Bool bDirty; - sal_Bool bDoUpdate; + bool bDataValid; + bool bInUpdate; + bool bDirty; + bool bDoUpdate; protected: virtual void GetCellText(const ScAddress& rCellPos, OUString& rText); @@ -398,9 +398,9 @@ public: ScDocShell* GetDocShell() const { return pDocShell; } const ScAddress& GetCellPos() const { return aCellPos; } - void SetDirty(sal_Bool bValue) { bDirty = bValue; } - sal_Bool IsDirty() const { return bDirty; } - void SetDoUpdate(sal_Bool bValue) { bDoUpdate = bValue; } + void SetDirty(bool bValue) { bDirty = bValue; } + bool IsDirty() const { return bDirty; } + void SetDoUpdate(bool bValue) { bDoUpdate = bValue; } }; class ScCellTextObj : public ScCellTextData, public SvxUnoText -- cgit