This is simply unnecessary and resulted in a crash in wxDFB because the window
was used for this variable initialization before being created.
Closes #11711.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63638
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
m_ownsImageListState;
wxListHeaderWindow *m_headerWin;
wxListMainWindow *m_mainWin;
m_ownsImageListState;
wxListHeaderWindow *m_headerWin;
wxListMainWindow *m_mainWin;
- wxCoord m_headerHeight;
protected:
virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
protected:
virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
m_mainWin = NULL;
m_headerWin = NULL;
m_mainWin = NULL;
m_headerWin = NULL;
- m_headerHeight = wxRendererNative::Get().GetHeaderButtonHeight(this);
}
wxGenericListCtrl::~wxGenericListCtrl()
}
wxGenericListCtrl::~wxGenericListCtrl()
(
this, wxID_ANY, m_mainWin,
wxPoint(0,0),
(
this, wxID_ANY, m_mainWin,
wxPoint(0,0),
- wxSize(GetClientSize().x, m_headerHeight),
+ wxSize
+ (
+ GetClientSize().x,
+ wxRendererNative::Get().GetHeaderButtonHeight(this)
+ ),
#ifdef __WXOSX__
// TODO not tested under other platforms, remove the platform condition if
// it works on those as well
#ifdef __WXOSX__
// TODO not tested under other platforms, remove the platform condition if
// it works on those as well
- GetSizer()->SetItemMinSize( m_headerWin, wxSize(-1,m_headerHeight) );
+ GetSizer()->SetItemMinSize( m_headerWin, wxSize(-1, m_headerWin->GetSize().y) );
return false;
if ( m_mainWin->HasHeader() )
return false;
if ( m_mainWin->HasHeader() )
- rect.y += m_headerHeight + 1;
+ rect.y += m_headerWin->GetSize().y + 1;