summaryrefslogtreecommitdiff
path: root/svx/source/unodraw/unoshap4.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-11 11:17:38 +0200
committerNoel Grandin <noel@peralex.com>2014-03-14 07:50:31 +0200
commit86ffac74e3e0a725abe6b0f79946b3381828bc8e (patch)
treeb4e38b61202b3bd1ca0e0929e5da3bb0d18be68e /svx/source/unodraw/unoshap4.cxx
parent358be80f65d335910a4add147cd15e35d3505afd (diff)
svx: sal_Bool->bool
Change-Id: I8cee08b48660c850e32c061dde0b0e3fdde38349
Diffstat (limited to 'svx/source/unodraw/unoshap4.cxx')
-rw-r--r--svx/source/unodraw/unoshap4.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/unodraw/unoshap4.cxx b/svx/source/unodraw/unoshap4.cxx
index 9f1339a705f4..e422239cbcf4 100644
--- a/svx/source/unodraw/unoshap4.cxx
+++ b/svx/source/unodraw/unoshap4.cxx
@@ -256,7 +256,7 @@ bool SvxOle2Shape::getPropertyValueImpl( const OUString& rName, const SfxItemPro
}
else
{
- rValue = GetBitmap( sal_True );
+ rValue = GetBitmap( true );
}
break;
}
@@ -395,13 +395,13 @@ bool SvxOle2Shape::getPropertyValueImpl( const OUString& rName, const SfxItemPro
return true;
}
-sal_Bool SvxOle2Shape::createObject( const SvGlobalName &aClassName )
+bool SvxOle2Shape::createObject( const SvGlobalName &aClassName )
{
DBG_TESTSOLARMUTEX();
SdrOle2Obj* pOle2Obj = dynamic_cast< SdrOle2Obj* >( mpObj.get() );
if ( !pOle2Obj || !pOle2Obj->IsEmpty() )
- return sal_False;
+ return false;
// create storage and inplace object
::comphelper::IEmbeddedHelper* pPersist = mpModel->GetPersist();
@@ -448,13 +448,13 @@ sal_Bool SvxOle2Shape::createObject( const SvGlobalName &aClassName )
return xObj.is();
}
-sal_Bool SvxOle2Shape::createLink( const OUString& aLinkURL )
+bool SvxOle2Shape::createLink( const OUString& aLinkURL )
{
DBG_TESTSOLARMUTEX();
SdrOle2Obj* pOle2Obj = dynamic_cast< SdrOle2Obj* >( mpObj.get() );
if ( !pOle2Obj || !pOle2Obj->IsEmpty() )
- return sal_False;
+ return false;
OUString aPersistName;