summaryrefslogtreecommitdiff
path: root/sc
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
parent28b3ae18151529d79531e029835b8c7bdeee5787 (diff)
sal_Bool->bool
Change-Id: I41432cbe229ab1aeae59d7991969fda7d28ff6bc
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/inc/xcl97esc.hxx6
-rw-r--r--sc/source/filter/xcl97/xcl97esc.cxx2
2 files changed, 4 insertions, 4 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; }
};
diff --git a/sc/source/filter/xcl97/xcl97esc.cxx b/sc/source/filter/xcl97/xcl97esc.cxx
index 70c8a10520f0..b7f557a20f80 100644
--- a/sc/source/filter/xcl97/xcl97esc.cxx
+++ b/sc/source/filter/xcl97/xcl97esc.cxx
@@ -203,7 +203,7 @@ EscherExHostAppData* XclEscherEx::StartShape( const Reference< XShape >& rxShape
{ // stacked recursive group object
if ( !pCurrAppData->IsStackedGroup() )
{ //! UpdateDffFragmentEnd only once
- pCurrAppData->SetStackedGroup( sal_True );
+ pCurrAppData->SetStackedGroup( true );
UpdateDffFragmentEnd();
}
}