summaryrefslogtreecommitdiff
path: root/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx
diff options
context:
space:
mode:
authorRicardo Montania <ricardo@linuxafundo.com.br>2012-09-07 03:36:42 -0300
committerOlivier Hallot <olivier.hallot@alta.org.br>2012-09-07 12:26:19 +0000
commite1276e83e0e914eab8966a189948d2238c82a1b6 (patch)
tree7c010d0d9fcf5d43e53e638c535f44048b8ef571 /accessibility/source/standard/vclxaccessibledropdownlistbox.cxx
parent346cf4ee5d2f82b59900de1f71160c0d90ffab41 (diff)
OUString cleanup in accessibility
Change-Id: Ie4e51632bf81053f0d32428bb7ef5b01ec301ccc Reviewed-on: https://gerrit.libreoffice.org/579 Reviewed-by: Olivier Hallot <olivier.hallot@alta.org.br> Tested-by: Olivier Hallot <olivier.hallot@alta.org.br>
Diffstat (limited to 'accessibility/source/standard/vclxaccessibledropdownlistbox.cxx')
-rw-r--r--accessibility/source/standard/vclxaccessibledropdownlistbox.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx b/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx
index 24765a7891db..504d289800a9 100644
--- a/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx
+++ b/accessibility/source/standard/vclxaccessibledropdownlistbox.cxx
@@ -87,22 +87,22 @@ void VCLXAccessibleDropDownListBox::ProcessWindowEvent( const VclWindowEvent& rV
//===== XServiceInfo ========================================================
-::rtl::OUString VCLXAccessibleDropDownListBox::getImplementationName()
+OUString VCLXAccessibleDropDownListBox::getImplementationName()
throw (RuntimeException)
{
- return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.toolkit.AccessibleDropDownListBox" ));
+ return OUString( "com.sun.star.comp.toolkit.AccessibleDropDownListBox" );
}
-Sequence< ::rtl::OUString > VCLXAccessibleDropDownListBox::getSupportedServiceNames (void)
+Sequence< OUString > VCLXAccessibleDropDownListBox::getSupportedServiceNames (void)
throw (RuntimeException)
{
- Sequence< ::rtl::OUString > aNames = VCLXAccessibleBox::getSupportedServiceNames();
+ Sequence< OUString > aNames = VCLXAccessibleBox::getSupportedServiceNames();
sal_Int32 nLength = aNames.getLength();
aNames.realloc( nLength + 1 );
- aNames[nLength] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.accessibility.AccessibleDropDownListBox" ));
+ aNames[nLength] = "com.sun.star.accessibility.AccessibleDropDownListBox";
return aNames;
}