Author: gadamopoulos Date: Sun Oct 26 17:16:19 2014 New Revision: 65020
URL: http://svn.reactos.org/svn/reactos?rev=65020&view=rev Log: [browseui] - Improve CBaseBar::TranslateAcceleratorIO stub - Returning always TRUE means that creating a basebar ended up eating all messages - Fixes the hang that happened when we clicked on the folders button in the toolbar
Modified: branches/shell-experiments/dll/win32/browseui/basebar.cpp
Modified: branches/shell-experiments/dll/win32/browseui/basebar.cpp URL: http://svn.reactos.org/svn/reactos/branches/shell-experiments/dll/win32/brow... ============================================================================== --- branches/shell-experiments/dll/win32/browseui/basebar.cpp [iso-8859-1] (original) +++ branches/shell-experiments/dll/win32/browseui/basebar.cpp [iso-8859-1] Sun Oct 26 17:16:19 2014 @@ -296,7 +296,7 @@ HRESULT STDMETHODCALLTYPE CBaseBar::TranslateAcceleratorIO(LPMSG lpMsg) { // forward to contained bar - return S_OK; + return S_FALSE; }
HRESULT STDMETHODCALLTYPE CBaseBar::SetClient(IUnknown *punkClient)