* Use the debugging class to track COM refcounting of the CMenuBand.
* CMenuSite: Remove an useless line.

[BROWSEUI]
* Refactor the CreateMenuBar method in an attempt to figure out a seemingly magic crash with VS2010 (not yet solved).
* Begin fixing some unused-but-set warnings.

[SHELL32]
* Fix some small bugs spotted by Victor.

svn path=/branches/shell-experiments/; revision=63546
This commit is contained in:
David Quintana 2014-06-07 13:54:11 +00:00
parent 9f33eab100
commit 7ddd2648be
10 changed files with 167 additions and 71 deletions

View file

@ -44,7 +44,7 @@ HRESULT WINAPI CMenuBand_Constructor(REFIID riid, LPVOID *ppv)
#else
*ppv = NULL;
CMenuBand * site = new CComObject<CMenuBand>();
CMenuBand * site = new CComDebugObject<CMenuBand>();
if (!site)
return E_OUTOFMEMORY;