summaryrefslogtreecommitdiffstats
path: root/UnoControls/source/controls/framecontrol.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-15 17:23:23 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-15 17:23:23 +0200
commit15652daf08fae35caff2e0cb0520644c7eb1f7ef (patch)
treeea8afe00cadef731bc71d6c0aa2c2a997a9b7192 /UnoControls/source/controls/framecontrol.cxx
parentloplugin:salbool env var is no longer necessary, all code is clean (diff)
downloadcore-15652daf08fae35caff2e0cb0520644c7eb1f7ef.tar.gz
core-15652daf08fae35caff2e0cb0520644c7eb1f7ef.zip
UnoControls: sal_False/True -> false/true
Change-Id: If30d43a2693c6df2d483ec135efa54ccb643fdb0
Diffstat (limited to 'UnoControls/source/controls/framecontrol.cxx')
-rw-r--r--UnoControls/source/controls/framecontrol.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/UnoControls/source/controls/framecontrol.cxx b/UnoControls/source/controls/framecontrol.cxx
index 2be1c04fe019..246dc8967d64 100644
--- a/UnoControls/source/controls/framecontrol.cxx
+++ b/UnoControls/source/controls/framecontrol.cxx
@@ -181,7 +181,7 @@ void SAL_CALL FrameControl::createPeer( const Reference< XToolkit >& xToo
sal_Bool SAL_CALL FrameControl::setModel( const Reference< XControlModel >& /*xModel*/ ) throw( RuntimeException, std::exception )
{
// We have no model.
- return sal_False;
+ return false;
}
// XControl
@@ -205,7 +205,7 @@ void SAL_CALL FrameControl::dispose() throw( RuntimeException, std::exception )
sal_Bool SAL_CALL FrameControl::setGraphics( const Reference< XGraphics >& /*xDevice*/ ) throw( RuntimeException, std::exception )
{
// it is not possible to print this control
- return sal_False;
+ return false;
}
// XView
@@ -356,7 +356,7 @@ IPropertyArrayHelper& FrameControl::getInfoHelper()
if (!pInfo)
{
- pInfo = new OPropertyArrayHelper( impl_getStaticPropertyDescriptor(), sal_True );
+ pInfo = new OPropertyArrayHelper( impl_getStaticPropertyDescriptor(), true );
}
}
@@ -447,7 +447,7 @@ void FrameControl::impl_createFrame( const Reference< XWindowPeer >& xPee
Any aNewFrame ( &xNewFrame, cppu::UnoType<XFrame>::get());
Any aOldFrame ( &xOldFrame, cppu::UnoType<XFrame>::get());
- fire ( &nFrameId, &aNewFrame, &aOldFrame, 1, sal_False );
+ fire ( &nFrameId, &aNewFrame, &aOldFrame, 1, false );
if (xOldFrame.is())
{
@@ -473,7 +473,7 @@ void FrameControl::impl_deleteFrame()
sal_Int32 nFrameId = PROPERTYHANDLE_FRAME;
Any aNewFrame( &xNullFrame, cppu::UnoType<XFrame2>::get());
Any aOldFrame( &xOldFrame, cppu::UnoType<XFrame2>::get());
- fire( &nFrameId, &aNewFrame, &aOldFrame, 1, sal_False );
+ fire( &nFrameId, &aNewFrame, &aOldFrame, 1, false );
// dispose the frame
if( xOldFrame.is() )