From 239867bdd106e661cf26f20378f0f4852c814e8c Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Sun, 9 Feb 2014 21:32:07 +0000 Subject: [PATCH] [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 --- dll/win32/browseui/shellbrowser.cpp | 2 ++ 1 file changed, 2 insertions(+) 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; } -- 2.17.1