diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2010-12-02 23:05:45 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@hemulen.(none)> | 2010-12-02 23:06:15 +0200 |
commit | 0bdef7cec695042a2259c327fc4ea84c74babd0f (patch) | |
tree | 26f5ba218ccc2a8fc745bbf9062f16cdcdba476c /extensions | |
parent | c078b161b0c8832ffb2f82913d60ff890a82ecaa (diff) |
Revert one broken string initialisation change
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/plugin/win/winmgr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/plugin/win/winmgr.cxx b/extensions/source/plugin/win/winmgr.cxx index 8ebb7484271a..c1ad0151b490 100644 --- a/extensions/source/plugin/win/winmgr.cxx +++ b/extensions/source/plugin/win/winmgr.cxx @@ -422,7 +422,7 @@ Sequence< PluginDescription > XPluginManager_Impl::impl_getPluginDescriptions(vo rDescr.Description = aComment; sal_Int32 nPos = 0, nLen = aExtToken.getLength(); - OUString aExtensions(nLen ? RTL_CONSTASCII_USTRINGPARAM( "*.") : RTL_CONSTASCII_USTRINGPARAM( "*.*" ) ); + OUString aExtensions( OUString::createFromAscii( nLen ? "*." : "*.*" ) ); for ( ; nPos < nLen; ++nPos ) { |