From: Giannis Adamopoulos Date: Sun, 9 Feb 2014 21:32:07 +0000 (+0000) Subject: [browseui] X-Git-Tag: backups/shell-experiments@75904~377 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=239867bdd106e661cf26f20378f0f4852c814e8c [browseui] - Add a tiny hack in browseui that allows it to browse properly when the user tries to open a folder in win8 svn path=/branches/shell-experiments/; revision=62082 --- diff --git a/dll/win32/browseui/shellbrowser.cpp b/dll/win32/browseui/shellbrowser.cpp index 05e322c87b0..66521fba218 100644 --- a/dll/win32/browseui/shellbrowser.cpp +++ b/dll/win32/browseui/shellbrowser.cpp @@ -1971,6 +1971,8 @@ HRESULT STDMETHODCALLTYPE CShellBrowser::QueryService(REFGUID guidService, REFII 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; }