[EXPLORER]
authorJérôme Gardou <jerome.gardou@reactos.org>
Mon, 16 Feb 2015 22:33:15 +0000 (22:33 +0000)
committerJérôme Gardou <jerome.gardou@reactos.org>
Mon, 16 Feb 2015 22:33:15 +0000 (22:33 +0000)
 - Prperly initialize members in CStartMenu constructor.

svn path=/trunk/; revision=66328

reactos/base/shell/explorer/traywnd.cpp

index c2faf43..2c03f9d 100644 (file)
@@ -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()