mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[EXPLORER]
- Prperly initialize members in CStartMenu constructor. svn path=/trunk/; revision=66328
This commit is contained in:
parent
b53f6e070e
commit
12ac60c6f7
1 changed files with 5 additions and 1 deletions
|
@ -72,8 +72,12 @@ class CStartButton
|
|||
|
||||
public:
|
||||
CStartButton(CMessageMap *pObject, DWORD dwMsgMapID)
|
||||
: CContainedWindow(pObject, dwMsgMapID)
|
||||
: CContainedWindow(pObject, dwMsgMapID),
|
||||
m_ImageList(NULL),
|
||||
m_Font(NULL)
|
||||
{
|
||||
m_Size.cx = 0;
|
||||
m_Size.cy = 0;
|
||||
}
|
||||
|
||||
virtual ~CStartButton()
|
||||
|
|
Loading…
Reference in a new issue