diff options
author | Kevin Hunter <hunteke@earlham.edu> | 2010-11-08 20:56:20 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-08 20:56:20 +0000 |
commit | 7383be741b529723dee054615d5d709ef5dbec69 (patch) | |
tree | 31d7d65198c96ce62829eee71a059ee4bb672fb4 /accessibility/source/standard/vclxaccessibletoolbox.cxx | |
parent | 8a534d798a91d3bc687a0975dbcd764aa8d5b823 (diff) |
use RTL_CONSTASCII_USTRINGPARAM
Diffstat (limited to 'accessibility/source/standard/vclxaccessibletoolbox.cxx')
-rw-r--r-- | accessibility/source/standard/vclxaccessibletoolbox.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accessibility/source/standard/vclxaccessibletoolbox.cxx b/accessibility/source/standard/vclxaccessibletoolbox.cxx index 1b22fddc95fa..263e2a75a46d 100644 --- a/accessibility/source/standard/vclxaccessibletoolbox.cxx +++ b/accessibility/source/standard/vclxaccessibletoolbox.cxx @@ -686,7 +686,7 @@ void SAL_CALL VCLXAccessibleToolBox::disposing() // ----------------------------------------------------------------------------- ::rtl::OUString VCLXAccessibleToolBox::getImplementationName() throw (RuntimeException) { - return ::rtl::OUString::createFromAscii( "com.sun.star.comp.toolkit.AccessibleToolBox" ); + return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.toolkit.AccessibleToolBox" )); } // ----------------------------------------------------------------------------- Sequence< ::rtl::OUString > VCLXAccessibleToolBox::getSupportedServiceNames() throw (RuntimeException) @@ -694,7 +694,7 @@ Sequence< ::rtl::OUString > VCLXAccessibleToolBox::getSupportedServiceNames() th Sequence< ::rtl::OUString > aNames = VCLXAccessibleComponent::getSupportedServiceNames(); sal_Int32 nLength = aNames.getLength(); aNames.realloc( nLength + 1 ); - aNames[nLength] = ::rtl::OUString::createFromAscii( "com.sun.star.accessibility.AccessibleToolBox" ); + aNames[nLength] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.accessibility.AccessibleToolBox" )); return aNames; } // ----------------------------------------------------------------------------- |