summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-12 15:54:09 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:13 +0200
commit3e971c792ce820672baa99562e25d087325e0406 (patch)
tree7b7ac35e55713b35293c9fe95aed668b9d237c55 /filter
parent6c5c1c1a3b72efa62bfdf1da2a1506d259bd68c7 (diff)
sal_Bool->bool
Change-Id: Ibd5178f35d735e94065a3fbb6b61de53e53b1b0c
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/svdfppt.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/filter/source/msfilter/svdfppt.cxx b/filter/source/msfilter/svdfppt.cxx
index 3362dbd483f0..6d173978f386 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -1644,15 +1644,15 @@ sal_Bool PPTConvertOCXControls::ReadOCXStream( SotStorageRef& rSrc,
return bRes;
}
-sal_Bool PPTConvertOCXControls::InsertControl(
+bool PPTConvertOCXControls::InsertControl(
const com::sun::star::uno::Reference<
com::sun::star::form::XFormComponent > &rFComp,
const com::sun::star::awt::Size& rSize,
com::sun::star::uno::Reference<
com::sun::star::drawing::XShape > *pShape,
- sal_Bool /*bFloatingCtrl*/)
+ bool /*bFloatingCtrl*/)
{
- sal_Bool bRetValue = sal_False;
+ bool bRetValue = false;
try
{
::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > xShape;
@@ -1687,7 +1687,7 @@ sal_Bool PPTConvertOCXControls::InsertControl(
xControlShape->setControl( xControlModel );
if (pShape)
*pShape = xShape;
- bRetValue = sal_True;
+ bRetValue = true;
}
}
}
@@ -1695,7 +1695,7 @@ sal_Bool PPTConvertOCXControls::InsertControl(
}
catch( ... )
{
- bRetValue = sal_False;
+ bRetValue = false;
}
return bRetValue;
};