summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xcl97esc.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-12 15:34:17 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:12 +0200
commit732a6c0d7bb07239903fe3d0b6b44d832ef0b9a4 (patch)
treea9b27f861690ef56a43d250fd7981afec32f7c27 /sc/source/filter/inc/xcl97esc.hxx
parent28b3ae18151529d79531e029835b8c7bdeee5787 (diff)
sal_Bool->bool
Change-Id: I41432cbe229ab1aeae59d7991969fda7d28ff6bc
Diffstat (limited to 'sc/source/filter/inc/xcl97esc.hxx')
-rw-r--r--sc/source/filter/inc/xcl97esc.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/inc/xcl97esc.hxx b/sc/source/filter/inc/xcl97esc.hxx
index 7d0b501976dc..9d9617b681de 100644
--- a/sc/source/filter/inc/xcl97esc.hxx
+++ b/sc/source/filter/inc/xcl97esc.hxx
@@ -144,13 +144,13 @@ private:
class XclEscherHostAppData : public EscherExHostAppData
{
private:
- sal_Bool bStackedGroup;
+ bool bStackedGroup;
public:
XclEscherHostAppData() : bStackedGroup( false )
{}
- inline void SetStackedGroup( sal_Bool b ) { bStackedGroup = b; }
- inline sal_Bool IsStackedGroup() const { return bStackedGroup; }
+ inline void SetStackedGroup( bool b ) { bStackedGroup = b; }
+ inline bool IsStackedGroup() const { return bStackedGroup; }
};