summaryrefslogtreecommitdiffstats
path: root/sc/inc/textuno.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-12 14:24:54 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:05 +0200
commit6e0254772a0312bb6493513a5c1973aec00cafdf (patch)
tree0d68a759d4b5fc0146f4b6c2e4b12802b78505fd /sc/inc/textuno.hxx
parentsal_Bool->bool (diff)
downloadcore-6e0254772a0312bb6493513a5c1973aec00cafdf.tar.gz
core-6e0254772a0312bb6493513a5c1973aec00cafdf.zip
sal_Bool->bool
Change-Id: Ic3883c0d490228ce607ac9296e45306718f03821
Diffstat (limited to 'sc/inc/textuno.hxx')
-rw-r--r--sc/inc/textuno.hxx14
1 files changed, 7 insertions, 7 deletions
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