diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-05-15 13:27:19 +0200 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2015-05-15 17:55:15 +0000 |
commit | 5b1337f7b2e1f79d78d4bf6559bd84f1ebb934bf (patch) | |
tree | 82704da8367f25963d08c570a4fa57e30e4ca839 /accessibility/source | |
parent | 6fbda0905d4e721392038bfad9e173e180f788ee (diff) |
tdf#62475: partial handmade fixes
Change-Id: Ib9af202c43b916b9af4b4e18db35d470a8692fe4
Reviewed-on: https://gerrit.libreoffice.org/15712
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'accessibility/source')
6 files changed, 10 insertions, 11 deletions
diff --git a/accessibility/source/standard/vclxaccessiblecombobox.cxx b/accessibility/source/standard/vclxaccessiblecombobox.cxx index de97daac0cc1..48e7a78dcecf 100644 --- a/accessibility/source/standard/vclxaccessiblecombobox.cxx +++ b/accessibility/source/standard/vclxaccessiblecombobox.cxx @@ -55,8 +55,7 @@ void VCLXAccessibleComboBox::ProcessWindowEvent (const VclWindowEvent& rVclWindo - -//===== XServiceInfo ======================================================== +// XServiceInfo OUString VCLXAccessibleComboBox::getImplementationName() throw (RuntimeException, std::exception) diff --git a/accessibility/source/standard/vclxaccessibledropdowncombobox.cxx b/accessibility/source/standard/vclxaccessibledropdowncombobox.cxx index 0e50ac8c8ea3..66831d6a8f3a 100644 --- a/accessibility/source/standard/vclxaccessibledropdowncombobox.cxx +++ b/accessibility/source/standard/vclxaccessibledropdowncombobox.cxx @@ -80,7 +80,7 @@ void VCLXAccessibleDropDownComboBox::ProcessWindowEvent (const VclWindowEvent& r -//===== XServiceInfo ======================================================== +// XServiceInfo OUString VCLXAccessibleDropDownComboBox::getImplementationName() throw (RuntimeException, std::exception) diff --git a/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx b/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx index 2875852fd82d..30b400ce44d0 100644 --- a/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx +++ b/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx @@ -69,7 +69,7 @@ void VCLXAccessibleDropDownListBox::ProcessWindowEvent( const VclWindowEvent& rV -//===== XServiceInfo ======================================================== +// XServiceInfo OUString VCLXAccessibleDropDownListBox::getImplementationName() throw (RuntimeException, std::exception) diff --git a/accessibility/source/standard/vclxaccessiblelist.cxx b/accessibility/source/standard/vclxaccessiblelist.cxx index f494d4b8629f..86272805a4d7 100644 --- a/accessibility/source/standard/vclxaccessiblelist.cxx +++ b/accessibility/source/standard/vclxaccessiblelist.cxx @@ -558,7 +558,7 @@ void VCLXAccessibleList::HandleChangedItemList (bool /*bItemInserted*/, sal_Int3 IMPLEMENT_FORWARD_XINTERFACE2(VCLXAccessibleList, VCLXAccessibleComponent, VCLXAccessibleList_BASE) IMPLEMENT_FORWARD_XTYPEPROVIDER2(VCLXAccessibleList, VCLXAccessibleComponent, VCLXAccessibleList_BASE) -//===== XAccessible ========================================================= +// XAccessible Reference<XAccessibleContext> SAL_CALL VCLXAccessibleList::getAccessibleContext() @@ -568,7 +568,7 @@ Reference<XAccessibleContext> SAL_CALL } -//===== XAccessibleContext ================================================== +// XAccessibleContext sal_Int32 SAL_CALL VCLXAccessibleList::getAccessibleChildCount() throw (RuntimeException, std::exception) @@ -629,7 +629,7 @@ sal_Int16 SAL_CALL VCLXAccessibleList::getAccessibleRole() return AccessibleRole::LIST; } -//===== XServiceInfo ========================================================== +// XServiceInfo OUString VCLXAccessibleList::getImplementationName() throw (RuntimeException, std::exception) { diff --git a/accessibility/source/standard/vclxaccessiblelistbox.cxx b/accessibility/source/standard/vclxaccessiblelistbox.cxx index bc48680703ae..4eea07a14258 100644 --- a/accessibility/source/standard/vclxaccessiblelistbox.cxx +++ b/accessibility/source/standard/vclxaccessiblelistbox.cxx @@ -64,7 +64,7 @@ void VCLXAccessibleListBox::ProcessWindowEvent (const VclWindowEvent& rVclWindow VCLXAccessibleBox::ProcessWindowEvent( rVclWindowEvent ); } -//===== XServiceInfo ======================================================== +// XServiceInfo OUString VCLXAccessibleListBox::getImplementationName() throw (RuntimeException, std::exception) diff --git a/accessibility/source/standard/vclxaccessibletextfield.cxx b/accessibility/source/standard/vclxaccessibletextfield.cxx index 44461225ffdd..4eb05d3ecb50 100644 --- a/accessibility/source/standard/vclxaccessibletextfield.cxx +++ b/accessibility/source/standard/vclxaccessibletextfield.cxx @@ -67,7 +67,7 @@ IMPLEMENT_FORWARD_XINTERFACE2(VCLXAccessibleTextField, VCLXAccessibleTextCompone IMPLEMENT_FORWARD_XTYPEPROVIDER2(VCLXAccessibleTextField, VCLXAccessibleTextComponent, VCLXAccessible_BASE) -//===== XAccessible ========================================================= +// XAccessible Reference<XAccessibleContext> SAL_CALL VCLXAccessibleTextField::getAccessibleContext() @@ -77,7 +77,7 @@ Reference<XAccessibleContext> SAL_CALL } -//===== XAccessibleContext ================================================== +// XAccessibleContext sal_Int32 SAL_CALL VCLXAccessibleTextField::getAccessibleChildCount() throw (RuntimeException, std::exception) @@ -115,7 +115,7 @@ Reference< XAccessible > SAL_CALL VCLXAccessibleTextField::getAccessibleParent( -//===== XServiceInfo ========================================================== +// XServiceInfo OUString VCLXAccessibleTextField::getImplementationName() throw (RuntimeException, std::exception) |