Skip to content

Commit 83ccde2

Browse files
committed
wip
1 parent bce272c commit 83ccde2

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

sakura_core/uiparts/CMenuDrawer.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -730,6 +730,11 @@ void CMenuDrawer::Create( HINSTANCE hInstance, HWND hWndOwner, CImageListMgr* pc
730730
m_hWndOwner = hWndOwner;
731731
m_pcIcons = pcIcons;
732732

733+
m_hBMPs.resize(pcIcons->Count());
734+
for (int i = 0; i < pcIcons->Count(); ++i) {
735+
736+
}
737+
733738
return;
734739
}
735740

sakura_core/uiparts/CMenuDrawer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ class CMenuDrawer
122122
HDC m_hCompDC;
123123
int m_nCompBitmapHeight;
124124
int m_nCompBitmapWidth;
125+
std::vector<HBITMAP> m_hBMPs;
125126

126127
public:
127128
// 2010.01.30 syat アイコンイメージリストをprivate->public

0 commit comments

Comments
 (0)