fix memory leak; allocate the DC before SetFont() is called on the status bar

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58788 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2009-02-09 00:53:58 +00:00
parent 71b37ee6e4
commit 80255b7eaf
2 changed files with 10 additions and 4 deletions

View File

@@ -26,6 +26,7 @@ public:
long style = wxST_SIZEGRIP,
const wxString& name = wxStatusBarNameStr)
{
m_pDC = NULL;
(void)Create(parent, id, style, name);
}