summaryrefslogtreecommitdiffstats
path: root/svx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2011-09-01 00:09:12 -0400
committerKohei Yoshida <kohei.yoshida@suse.com>2011-09-02 02:00:40 -0400
commitf71bd7314a06975763a6d16a1a137e78771e9324 (patch)
tree7103f5329094409077edd973d4c88fbd4644e4eb /svx
parentunusedcode.easy: vcl::unotools cleanup (diff)
downloadcore-f71bd7314a06975763a6d16a1a137e78771e9324.tar.gz
core-f71bd7314a06975763a6d16a1a137e78771e9324.zip
sal_Bool to bool.
Diffstat (limited to 'svx')
-rw-r--r--svx/inc/svx/svdoole2.hxx8
-rw-r--r--svx/source/svdraw/svdoole2.cxx10
2 files changed, 9 insertions, 9 deletions
diff --git a/svx/inc/svx/svdoole2.hxx b/svx/inc/svx/svdoole2.hxx
index d43fd5d52283..7907831405f3 100644
--- a/svx/inc/svx/svdoole2.hxx
+++ b/svx/inc/svx/svdoole2.hxx
@@ -69,10 +69,10 @@ protected:
String aProgName;
// wg. Kompatibilitaet erstmal am SdrTextObj
- sal_Bool bFrame : 1;
- sal_Bool bInDestruction : 1;
- mutable bool m_bTypeAsked;
- mutable bool m_bChart;
+ bool bFrame:1;
+ bool bInDestruction:1;
+ mutable bool m_bTypeAsked:1;
+ mutable bool m_bChart:1;
SdrOle2ObjImpl* mpImpl;
diff --git a/svx/source/svdraw/svdoole2.cxx b/svx/source/svdraw/svdoole2.cxx
index 0757c2824341..b6c5f476a407 100644
--- a/svx/source/svdraw/svdoole2.cxx
+++ b/svx/source/svdraw/svdoole2.cxx
@@ -749,7 +749,7 @@ SdrOle2Obj::SdrOle2Obj(bool bFrame_) : m_bTypeAsked(false)
,m_bChart(false)
{
DBG_CTOR( SdrOle2Obj,NULL);
- bInDestruction = sal_False;
+ bInDestruction = false;
Init();
bFrame=bFrame_;
}
@@ -761,7 +761,7 @@ SdrOle2Obj::SdrOle2Obj( const svt::EmbeddedObjectRef& rNewObjRef, bool bFrame_)
, m_bChart(false)
{
DBG_CTOR( SdrOle2Obj,NULL);
- bInDestruction = sal_False;
+ bInDestruction = false;
Init();
bFrame=bFrame_;
@@ -782,7 +782,7 @@ SdrOle2Obj::SdrOle2Obj( const svt::EmbeddedObjectRef& rNewObjRef, const XubStrin
, m_bChart(false)
{
DBG_CTOR( SdrOle2Obj,NULL);
- bInDestruction = sal_False;
+ bInDestruction = false;
Init();
mpImpl->aPersistName = rNewObjName;
@@ -805,7 +805,7 @@ SdrOle2Obj::SdrOle2Obj( const svt::EmbeddedObjectRef& rNewObjRef, const XubStri
, m_bChart(false)
{
DBG_CTOR( SdrOle2Obj,NULL);
- bInDestruction = sal_False;
+ bInDestruction = false;
Init();
mpImpl->aPersistName = rNewObjName;
@@ -837,7 +837,7 @@ void SdrOle2Obj::Init()
SdrOle2Obj::~SdrOle2Obj()
{
DBG_DTOR( SdrOle2Obj,NULL);
- bInDestruction = sal_True;
+ bInDestruction = true;
if ( mpImpl->mbConnected )
Disconnect();