From: Paul Cornett Date: Mon, 5 Nov 2007 07:11:01 +0000 (+0000) Subject: initialize bitmap to avoid assertion X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/66ddd8d2f2e58f51a0ddecf2581766b6f932254a?hp=0847dca672bc870e3462bc54b00a39a96c70d3ae initialize bitmap to avoid assertion git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49637 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/unix/taskbarx11.cpp b/src/unix/taskbarx11.cpp index ab82f80a49..06118f3109 100644 --- a/src/unix/taskbarx11.cpp +++ b/src/unix/taskbarx11.cpp @@ -124,7 +124,7 @@ BEGIN_EVENT_TABLE(wxTaskBarIconArea, wxTaskBarIconAreaBase) END_EVENT_TABLE() wxTaskBarIconArea::wxTaskBarIconArea(wxTaskBarIcon *icon, const wxBitmap &bmp) - : wxTaskBarIconAreaBase(), m_icon(icon), m_pos(0,0) + : wxTaskBarIconAreaBase(), m_icon(icon), m_bmp(bmp) { #if defined(__WXGTK20__) && defined(TASKBAR_ICON_AREA_BASE_INCLUDED) m_invokingWindow = icon;