[Libreoffice-commits] .: extensions/source
Tor Lillqvist
tml at kemper.freedesktop.org
Thu Dec 2 13:07:16 PST 2010
extensions/source/plugin/win/winmgr.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 30ecc12182664d475cd70b6dd3228d04302acbaf
Author: Tor Lillqvist <tlillqvist at novell.com>
Date: Thu Dec 2 23:05:45 2010 +0200
Revert one broken string initialisation change
diff --git a/extensions/source/plugin/win/winmgr.cxx b/extensions/source/plugin/win/winmgr.cxx
index fb30040..d29c328 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 )
{
More information about the Libreoffice-commits
mailing list