]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/listctrl.cpp
Initialize the field count in Create(). It was using a garbage value
[wxWidgets.git] / src / generic / listctrl.cpp
index 573cdd50073e0dc473771a727c27eaabb3dea37a..90f95e61f752e5315ec1428b4aa4170df9c6934f 100644 (file)
@@ -25,7 +25,7 @@
 #include "wx/generic/imaglist.h"
 
 #ifndef wxUSE_GENERIC_LIST_EXTENSIONS
-#define wxUSE_GENERIC_LIST_EXTENSIONS 0
+#define wxUSE_GENERIC_LIST_EXTENSIONS 1
 #endif
 
 // ============================================================================
@@ -2154,6 +2154,7 @@ void wxListMainWindow::OnSize( wxSizeEvent &WXUNUSED(event) )
   We don't even allow the wxScrolledWindow::AdjustScrollbars() call
 
 */
+    m_dirty = TRUE;
 }
 
 void wxListMainWindow::DrawImage( int index, wxDC *dc, int x, int y )
@@ -2657,7 +2658,7 @@ void wxListMainWindow::CalculatePositions()
                 if (y+lineSpacing-6 >= clientHeight) // -6 for earlier "line breaking"
                 {
                     m_currentVisibleLines = 0;
-                    y = 5;
+                    y = 2;
                     x += maxWidth+6;
                     entireWidth += maxWidth+6;
                     maxWidth = 0;