summaryrefslogtreecommitdiff
path: root/accessibility/source/standard/vclxaccessiblecheckbox.cxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-02-09 18:16:42 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-02-09 08:18:05 +0000
commita238b1f8d304bf1e2ffb357937f3ec888ee8ac89 (patch)
tree083c0582d4bf80e313ed256ca476ba8f69c7f7a6 /accessibility/source/standard/vclxaccessiblecheckbox.cxx
parent538f276ae0414ea34ede6090b5f56e8fecd6fc65 (diff)
Remove excess newlines
A ridiculously fast way of doing this is: for i in $(pcregrep -l -M -r --include='.*[hc]xx$' \ --exclude-dir=workdir --exclude-dir=instdir '^ {3,}' .) do perl -0777 -i -pe 's/^ {3,}/ /gm' $i done Change-Id: Iebb93eccbee9e4fc5c4380474ba595858a27ac2c Reviewed-on: https://gerrit.libreoffice.org/22224 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'accessibility/source/standard/vclxaccessiblecheckbox.cxx')
-rw-r--r--accessibility/source/standard/vclxaccessiblecheckbox.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/accessibility/source/standard/vclxaccessiblecheckbox.cxx b/accessibility/source/standard/vclxaccessiblecheckbox.cxx
index bc77d1cf4227..c54e064d94b5 100644
--- a/accessibility/source/standard/vclxaccessiblecheckbox.cxx
+++ b/accessibility/source/standard/vclxaccessiblecheckbox.cxx
@@ -41,7 +41,6 @@ using namespace ::com::sun::star::accessibility;
using namespace ::comphelper;
-
// VCLXAccessibleCheckBox
@@ -53,13 +52,11 @@ VCLXAccessibleCheckBox::VCLXAccessibleCheckBox( VCLXWindow* pVCLWindow )
}
-
VCLXAccessibleCheckBox::~VCLXAccessibleCheckBox()
{
}
-
bool VCLXAccessibleCheckBox::IsChecked()
{
bool bChecked = false;
@@ -72,7 +69,6 @@ bool VCLXAccessibleCheckBox::IsChecked()
}
-
bool VCLXAccessibleCheckBox::IsIndeterminate()
{
bool bIndeterminate = false;
@@ -85,7 +81,6 @@ bool VCLXAccessibleCheckBox::IsIndeterminate()
}
-
void VCLXAccessibleCheckBox::SetChecked( bool bChecked )
{
if ( m_bChecked != bChecked )
@@ -101,7 +96,6 @@ void VCLXAccessibleCheckBox::SetChecked( bool bChecked )
}
-
void VCLXAccessibleCheckBox::SetIndeterminate( bool bIndeterminate )
{
if ( m_bIndeterminate != bIndeterminate )
@@ -117,7 +111,6 @@ void VCLXAccessibleCheckBox::SetIndeterminate( bool bIndeterminate )
}
-
void VCLXAccessibleCheckBox::ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent )
{
switch ( rVclWindowEvent.GetId() )
@@ -134,7 +127,6 @@ void VCLXAccessibleCheckBox::ProcessWindowEvent( const VclWindowEvent& rVclWindo
}
-
void VCLXAccessibleCheckBox::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet )
{
VCLXAccessibleTextComponent::FillAccessibleStateSet( rStateSet );
@@ -170,7 +162,6 @@ OUString VCLXAccessibleCheckBox::getImplementationName() throw (RuntimeException
}
-
Sequence< OUString > VCLXAccessibleCheckBox::getSupportedServiceNames() throw (RuntimeException, std::exception)
{
Sequence< OUString > aNames { "com.sun.star.awt.AccessibleCheckBox" };
@@ -189,7 +180,6 @@ sal_Int32 VCLXAccessibleCheckBox::getAccessibleActionCount( ) throw (RuntimeExce
}
-
sal_Bool VCLXAccessibleCheckBox::doAccessibleAction ( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -221,7 +211,6 @@ sal_Bool VCLXAccessibleCheckBox::doAccessibleAction ( sal_Int32 nIndex ) throw (
}
-
OUString VCLXAccessibleCheckBox::getAccessibleActionDescription ( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -236,7 +225,6 @@ OUString VCLXAccessibleCheckBox::getAccessibleActionDescription ( sal_Int32 nInd
}
-
Reference< XAccessibleKeyBinding > VCLXAccessibleCheckBox::getAccessibleActionKeyBinding( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -292,7 +280,6 @@ Any VCLXAccessibleCheckBox::getCurrentValue( ) throw (RuntimeException, std::ex
}
-
sal_Bool VCLXAccessibleCheckBox::setCurrentValue( const Any& aNumber ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -320,7 +307,6 @@ sal_Bool VCLXAccessibleCheckBox::setCurrentValue( const Any& aNumber ) throw (Ru
}
-
Any VCLXAccessibleCheckBox::getMaximumValue( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -337,7 +323,6 @@ Any VCLXAccessibleCheckBox::getMaximumValue( ) throw (RuntimeException, std::ex
}
-
Any VCLXAccessibleCheckBox::getMinimumValue( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -349,5 +334,4 @@ Any VCLXAccessibleCheckBox::getMinimumValue( ) throw (RuntimeException, std::ex
}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */