Author: jgardou Date: Mon Feb 16 22:33:15 2015 New Revision: 66328
URL: http://svn.reactos.org/svn/reactos?rev=66328&view=rev Log: [EXPLORER] - Prperly initialize members in CStartMenu constructor.
Modified: trunk/reactos/base/shell/explorer/traywnd.cpp
Modified: trunk/reactos/base/shell/explorer/traywnd.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/traywnd... ============================================================================== --- trunk/reactos/base/shell/explorer/traywnd.cpp [iso-8859-1] (original) +++ trunk/reactos/base/shell/explorer/traywnd.cpp [iso-8859-1] Mon Feb 16 22:33:15 2015 @@ -72,8 +72,12 @@
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()