summaryrefslogtreecommitdiffstats
path: root/basctl/source/accessibility/accessibledialogwindow.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 /basctl/source/accessibility/accessibledialogwindow.cxx
parentFormatting changes across all modules (diff)
downloadcore-a238b1f8d304bf1e2ffb357937f3ec888ee8ac89.tar.gz
core-a238b1f8d304bf1e2ffb357937f3ec888ee8ac89.zip
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 'basctl/source/accessibility/accessibledialogwindow.cxx')
-rw-r--r--basctl/source/accessibility/accessibledialogwindow.cxx39
1 files changed, 0 insertions, 39 deletions
diff --git a/basctl/source/accessibility/accessibledialogwindow.cxx b/basctl/source/accessibility/accessibledialogwindow.cxx
index aeae71e01f49..13f104da08ca 100644
--- a/basctl/source/accessibility/accessibledialogwindow.cxx
+++ b/basctl/source/accessibility/accessibledialogwindow.cxx
@@ -54,13 +54,11 @@ AccessibleDialogWindow::ChildDescriptor::ChildDescriptor( DlgEdObj* _pDlgEdObj )
}
-
AccessibleDialogWindow::ChildDescriptor::~ChildDescriptor()
{
}
-
AccessibleDialogWindow::ChildDescriptor::ChildDescriptor( const ChildDescriptor& rDesc )
:pDlgEdObj( rDesc.pDlgEdObj )
,rxAccessible( rDesc.rxAccessible )
@@ -68,7 +66,6 @@ AccessibleDialogWindow::ChildDescriptor::ChildDescriptor( const ChildDescriptor&
}
-
AccessibleDialogWindow::ChildDescriptor& AccessibleDialogWindow::ChildDescriptor::operator=( const ChildDescriptor& rDesc )
{
pDlgEdObj = rDesc.pDlgEdObj;
@@ -78,7 +75,6 @@ AccessibleDialogWindow::ChildDescriptor& AccessibleDialogWindow::ChildDescriptor
}
-
bool AccessibleDialogWindow::ChildDescriptor::operator==( const ChildDescriptor& rDesc )
{
bool bRet = false;
@@ -89,7 +85,6 @@ bool AccessibleDialogWindow::ChildDescriptor::operator==( const ChildDescriptor&
}
-
bool AccessibleDialogWindow::ChildDescriptor::operator<( const ChildDescriptor& rDesc ) const
{
bool bRet = false;
@@ -136,7 +131,6 @@ AccessibleDialogWindow::AccessibleDialogWindow (basctl::DialogWindow* pDialogWin
}
-
AccessibleDialogWindow::~AccessibleDialogWindow()
{
if ( m_pDialogWindow )
@@ -153,7 +147,6 @@ AccessibleDialogWindow::~AccessibleDialogWindow()
}
-
void AccessibleDialogWindow::UpdateFocused()
{
for ( size_t i = 0; i < m_aAccessibleChildren.size(); ++i )
@@ -169,7 +162,6 @@ void AccessibleDialogWindow::UpdateFocused()
}
-
void AccessibleDialogWindow::UpdateSelected()
{
NotifyAccessibleEvent( AccessibleEventId::SELECTION_CHANGED, Any(), Any() );
@@ -187,7 +179,6 @@ void AccessibleDialogWindow::UpdateSelected()
}
-
void AccessibleDialogWindow::UpdateBounds()
{
for ( size_t i = 0; i < m_aAccessibleChildren.size(); ++i )
@@ -203,7 +194,6 @@ void AccessibleDialogWindow::UpdateBounds()
}
-
bool AccessibleDialogWindow::IsChildVisible( const ChildDescriptor& rDesc )
{
bool bVisible = false;
@@ -247,7 +237,6 @@ bool AccessibleDialogWindow::IsChildVisible( const ChildDescriptor& rDesc )
}
-
void AccessibleDialogWindow::InsertChild( const ChildDescriptor& rDesc )
{
// check, if object is already in child list
@@ -276,7 +265,6 @@ void AccessibleDialogWindow::InsertChild( const ChildDescriptor& rDesc )
}
-
void AccessibleDialogWindow::RemoveChild( const ChildDescriptor& rDesc )
{
// find object in child list
@@ -306,7 +294,6 @@ void AccessibleDialogWindow::RemoveChild( const ChildDescriptor& rDesc )
}
-
void AccessibleDialogWindow::UpdateChild( const ChildDescriptor& rDesc )
{
if ( IsChildVisible( rDesc ) )
@@ -322,7 +309,6 @@ void AccessibleDialogWindow::UpdateChild( const ChildDescriptor& rDesc )
}
-
void AccessibleDialogWindow::UpdateChildren()
{
if ( m_pDialogWindow )
@@ -335,7 +321,6 @@ void AccessibleDialogWindow::UpdateChildren()
}
-
void AccessibleDialogWindow::SortChildren()
{
// sort child list
@@ -343,7 +328,6 @@ void AccessibleDialogWindow::SortChildren()
}
-
IMPL_LINK_TYPED( AccessibleDialogWindow, WindowEventListener, VclWindowEvent&, rEvent, void )
{
DBG_ASSERT(rEvent.GetWindow(), "AccessibleDialogWindow::WindowEventListener: no window!");
@@ -352,7 +336,6 @@ IMPL_LINK_TYPED( AccessibleDialogWindow, WindowEventListener, VclWindowEvent&, r
}
-
void AccessibleDialogWindow::ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent )
{
Any aOldValue, aNewValue;
@@ -448,7 +431,6 @@ void AccessibleDialogWindow::ProcessWindowEvent( const VclWindowEvent& rVclWindo
}
-
void AccessibleDialogWindow::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet )
{
if ( m_pDialogWindow )
@@ -624,7 +606,6 @@ sal_Int32 AccessibleDialogWindow::getAccessibleChildCount() throw (RuntimeExcept
}
-
Reference< XAccessible > AccessibleDialogWindow::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -652,7 +633,6 @@ Reference< XAccessible > AccessibleDialogWindow::getAccessibleChild( sal_Int32 i
}
-
Reference< XAccessible > AccessibleDialogWindow::getAccessibleParent( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -669,7 +649,6 @@ Reference< XAccessible > AccessibleDialogWindow::getAccessibleParent( ) throw (
}
-
sal_Int32 AccessibleDialogWindow::getAccessibleIndexInParent( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -696,7 +675,6 @@ sal_Int32 AccessibleDialogWindow::getAccessibleIndexInParent( ) throw (RuntimeE
}
-
sal_Int16 AccessibleDialogWindow::getAccessibleRole( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -705,7 +683,6 @@ sal_Int16 AccessibleDialogWindow::getAccessibleRole( ) throw (RuntimeException,
}
-
OUString AccessibleDialogWindow::getAccessibleDescription( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -718,7 +695,6 @@ OUString AccessibleDialogWindow::getAccessibleDescription( ) throw (RuntimeExce
}
-
OUString AccessibleDialogWindow::getAccessibleName( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -731,7 +707,6 @@ OUString AccessibleDialogWindow::getAccessibleName( ) throw (RuntimeException,
}
-
Reference< XAccessibleRelationSet > AccessibleDialogWindow::getAccessibleRelationSet( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -742,7 +717,6 @@ Reference< XAccessibleRelationSet > AccessibleDialogWindow::getAccessibleRelatio
}
-
Reference< XAccessibleStateSet > AccessibleDialogWindow::getAccessibleStateSet( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -763,7 +737,6 @@ Reference< XAccessibleStateSet > AccessibleDialogWindow::getAccessibleStateSet(
}
-
Locale AccessibleDialogWindow::getLocale( ) throw (IllegalAccessibleComponentStateException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -803,7 +776,6 @@ Reference< XAccessible > AccessibleDialogWindow::getAccessibleAtPoint( const awt
}
-
void AccessibleDialogWindow::grabFocus( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -813,7 +785,6 @@ void AccessibleDialogWindow::grabFocus( ) throw (RuntimeException, std::excepti
}
-
sal_Int32 AccessibleDialogWindow::getForeground( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -838,7 +809,6 @@ sal_Int32 AccessibleDialogWindow::getForeground( ) throw (RuntimeException, std
}
-
sal_Int32 AccessibleDialogWindow::getBackground( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -884,7 +854,6 @@ Reference< awt::XFont > AccessibleDialogWindow::getFont( ) throw (RuntimeExcept
}
-
OUString AccessibleDialogWindow::getTitledBorderText( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -893,7 +862,6 @@ OUString AccessibleDialogWindow::getTitledBorderText( ) throw (RuntimeException
}
-
OUString AccessibleDialogWindow::getToolTipText( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -928,7 +896,6 @@ void AccessibleDialogWindow::selectAccessibleChild( sal_Int32 nChildIndex ) thro
}
-
sal_Bool AccessibleDialogWindow::isAccessibleChildSelected( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -943,7 +910,6 @@ sal_Bool AccessibleDialogWindow::isAccessibleChildSelected( sal_Int32 nChildInde
}
-
void AccessibleDialogWindow::clearAccessibleSelection()
throw (RuntimeException, std::exception)
{
@@ -954,7 +920,6 @@ void AccessibleDialogWindow::clearAccessibleSelection()
}
-
void AccessibleDialogWindow::selectAllAccessibleChildren( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -964,7 +929,6 @@ void AccessibleDialogWindow::selectAllAccessibleChildren( ) throw (RuntimeExcep
}
-
sal_Int32 AccessibleDialogWindow::getSelectedAccessibleChildCount( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -981,7 +945,6 @@ sal_Int32 AccessibleDialogWindow::getSelectedAccessibleChildCount( ) throw (Run
}
-
Reference< XAccessible > AccessibleDialogWindow::getSelectedAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -1004,7 +967,6 @@ Reference< XAccessible > AccessibleDialogWindow::getSelectedAccessibleChild( sal
}
-
void AccessibleDialogWindow::deselectAccessibleChild( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -1025,7 +987,6 @@ void AccessibleDialogWindow::deselectAccessibleChild( sal_Int32 nChildIndex ) th
}
-
} // namespace basctl
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */