Author: gadamopoulos Date: Sun Feb 9 21:32:07 2014 New Revision: 62082
URL: http://svn.reactos.org/svn/reactos?rev=62082&view=rev Log: [browseui] - Add a tiny hack in browseui that allows it to browse properly when the user tries to open a folder in win8
Modified: branches/shell-experiments/dll/win32/browseui/shellbrowser.cpp
Modified: branches/shell-experiments/dll/win32/browseui/shellbrowser.cpp URL: http://svn.reactos.org/svn/reactos/branches/shell-experiments/dll/win32/brow... ============================================================================== --- branches/shell-experiments/dll/win32/browseui/shellbrowser.cpp [iso-8859-1] (original) +++ branches/shell-experiments/dll/win32/browseui/shellbrowser.cpp [iso-8859-1] Sun Feb 9 21:32:07 2014 @@ -1971,6 +1971,8 @@ return this->QueryInterface(riid, ppvObject); if (IsEqualIID(guidService, SID_IExplorerToolbar)) return fClientBars[BIInternetToolbar].clientBar->QueryInterface(riid, ppvObject); + if (IsEqualIID(riid, IID_IShellBrowser)) + return this->QueryInterface(riid, ppvObject); return E_NOINTERFACE; }