[Libreoffice-commits] .: extensions/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Nov 28 02:10:32 PST 2012


 extensions/source/plugin/win/winmgr.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit deb098d9726a3dacb605695de0ee304d6c2b3034
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date:   Wed Nov 28 04:09:28 2012 -0600

    oops. mixed-up OString and OUString
    
    Change-Id: Iceed183de77a33652c1adb21e4d4146b65a44ec7

diff --git a/extensions/source/plugin/win/winmgr.cxx b/extensions/source/plugin/win/winmgr.cxx
index 3abf3f9..17f06d3 100644
--- a/extensions/source/plugin/win/winmgr.cxx
+++ b/extensions/source/plugin/win/winmgr.cxx
@@ -96,7 +96,7 @@ static void addPluginsFromPath( const TCHAR * pPluginsPath, PluginLocationMap &
 
     while (hFind != INVALID_HANDLE_VALUE)
     {
-        OString aName = OUString( aFindData.cFileName ).toAsciiLowerCase();
+        OString aName = OString( aFindData.cFileName ).toAsciiLowerCase();
 
         // no netscape default plugin anymore...
         // and no double plugin dlls


More information about the Libreoffice-commits mailing list