[SHELL32] Don't try to remove buttons on a nonexisting window

This commit is contained in:
Mark Jansen 2022-09-11 21:28:23 +02:00
parent 46ea5171bd
commit a6b8d4f6f0
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -294,10 +294,11 @@ CMenuToolbarBase::CMenuToolbarBase(CMenuBand *menuBand, BOOL usePager) :
CMenuToolbarBase::~CMenuToolbarBase()
{
ClearToolbar();
if (m_hWnd)
{
ClearToolbar();
DestroyWindow();
}
if (m_pager.m_hWnd)
m_pager.DestroyWindow();