]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/listctrl/listtest.cpp
call SetWindowPos(SWP_FRAMECHANGED) after changing some styles (patch 1445096)
[wxWidgets.git] / samples / listctrl / listtest.cpp
index dd01efe4f8e2e373e5ad5061a4fb71c9a3e0f029..ff643ad850d81937658f1f8ca5b1cae58859ae72 100644 (file)
@@ -9,11 +9,6 @@
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-#pragma implementation
-#pragma interface
-#endif
-
 // For compilers that support precompilation, includes "wx/wx.h".
 #include "wx/wxprec.h"
 
@@ -491,7 +486,6 @@ void MyFrame::InitWithReportItems()
     m_listCtrl->SetItem( item );
 
     m_listCtrl->SetTextColour(*wxBLUE);
-    m_listCtrl->SetBackgroundColour(*wxLIGHT_GREY);
 
     m_listCtrl->SetColumnWidth( 0, wxLIST_AUTOSIZE );
     m_listCtrl->SetColumnWidth( 1, wxLIST_AUTOSIZE );
@@ -724,7 +718,7 @@ void MyListCtrl::OnColClick(wxListEvent& event)
     int col = event.GetColumn();
 
     // set or unset image
-    static x = false;
+    static bool x = false;
     x = !x;
     SetColumnImage(col, x ? 0 : -1);