diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-06-29 14:42:54 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-06-29 16:23:23 +0200 |
commit | 318f2b64cc32038b2ab1b18b4a13e3f41e1e35ff (patch) | |
tree | c375d326f022d1e3f3b9baea19ea262982dbc4a3 /icon-themes | |
parent | 231fb4182fc9e81f801ff1d1355f7a613d0856c2 (diff) |
remove some createFromAscii usage
there are a lot more of them:
git grep 'createFromAscii[^)]*"'
Change-Id: Ibc2e9cae208d8b9c91667bb3b177c6bd6d3a9424
Diffstat (limited to 'icon-themes')
-rw-r--r-- | icon-themes/README | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/icon-themes/README b/icon-themes/README index 84f3f8560b80..7d40cf9b0798 100644 --- a/icon-themes/README +++ b/icon-themes/README @@ -43,9 +43,9 @@ How to add a new image set: and sal_uLong StyleSettings::ImplNameToSymbolsStyle( const ::rtl::OUString &rName ) const both in vcl/source/app/settings.cxx, e.g. - case STYLE_SYMBOLS_NEW_SET: return ::rtl::OUString::createFromAscii( "new_set" ); + case STYLE_SYMBOLS_NEW_SET: return ::rtl::OUString( "new_set" ); and - else if ( rName == ::rtl::OUString::createFromAscii( "new_set" ) ) + else if ( rName == "new_set" ) return STYLE_SYMBOLS_NEW_SET; - Add localized item names to 'ListBox LB_ICONSTYLE' to |