[SHELL32] Fix CMenuToolbarBase

CORE-17505
This commit is contained in:
Katayama Hirofumi MZ 2021-03-11 17:51:33 +09:00
parent 4f83032a12
commit 4583eae4f7
2 changed files with 1 additions and 3 deletions

View File

@ -263,7 +263,7 @@ HRESULT CMenuToolbarBase::OnCustomDraw(LPNMTBCUSTOMDRAW cdraw, LRESULT * theResu
}
CMenuToolbarBase::CMenuToolbarBase(CMenuBand *menuBand, BOOL usePager) :
m_pager(this, 1),
m_pager(WC_PAGESCROLLER, this),
m_useFlatMenus(FALSE),
m_disableMouseTrack(FALSE),
m_timerEnabled(FALSE),

View File

@ -135,8 +135,6 @@ private:
MESSAGE_HANDLER(WM_COMMAND, OnWinEventWrap)
MESSAGE_HANDLER(WM_NOTIFY, OnWinEventWrap)
MESSAGE_HANDLER(WM_TIMER, OnPopupTimer)
ALT_MSG_MAP(1)
// No pager specific handlers yet
END_MSG_MAP()
};