diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-09-01 00:09:12 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-09-02 02:00:40 -0400 |
commit | f71bd7314a06975763a6d16a1a137e78771e9324 (patch) | |
tree | 7103f5329094409077edd973d4c88fbd4644e4eb /svx | |
parent | 8c7345ab8961c75f839d59a6eab1efd9c9e4bdc8 (diff) |
sal_Bool to bool.
Diffstat (limited to 'svx')
-rw-r--r-- | svx/inc/svx/svdoole2.hxx | 8 | ||||
-rw-r--r-- | svx/source/svdraw/svdoole2.cxx | 10 |
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(); |