]> git.saurik.com Git - wxWidgets.git/commitdiff
don't ignore wxLC_NO_HEADER style when inserting first column
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 11 Jun 2003 21:58:55 +0000 (21:58 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 11 Jun 2003 21:58:55 +0000 (21:58 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21060 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/listctrl.cpp

index e8dccfc428b6ed18da2e1e800fb35a9153a5e04d..0a9299f9df0053ff6010aff82d76180a4866325c 100644 (file)
@@ -4930,7 +4930,7 @@ long wxGenericListCtrl::InsertColumn( long col, wxListItem &item )
 
     // if we hadn't had header before and have it now we need to relayout the
     // window
-    if ( GetColumnCount() == 1 )
+    if ( GetColumnCount() == 1 && m_mainWin->HasHeader() )
     {
         ResizeReportView(TRUE /* have header */);
     }