summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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();