Author: gadamopoulos
Date: Thu Dec 11 21:18:36 2014
New Revision: 65611
URL:
http://svn.reactos.org/svn/reactos?rev=65611&view=rev
Log:
[EXPLORER]
* Use LoadLibrary instead of GetModuleHandle in the wrapper of WinList_Init.
* Shdocvw was never loaded till that point so WinList_Init was not called.
* Should fix Opening link location in windows.
Modified:
trunk/reactos/base/shell/explorer/rshell.cpp
Modified: trunk/reactos/base/shell/explorer/rshell.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/rshell…
==============================================================================
--- trunk/reactos/base/shell/explorer/rshell.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/rshell.cpp [iso-8859-1] Thu Dec 11 21:18:36 2014
@@ -135,7 +135,7 @@
}
}
- hFallback = GetModuleHandleW(L"shdocvw.dll");
+ hFallback = LoadLibraryW(L"shdocvw.dll");
if (hFallback)
{