]> git.saurik.com Git - wxWidgets.git/commitdiff
really fix STL compilation
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 12 Dec 2008 15:06:15 +0000 (15:06 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 12 Dec 2008 15:06:15 +0000 (15:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57280 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index 8d2bf5c27876e22e0008f2faf3e6a1b7457f2606..a3f5cb24c75276d9fd22a9fc8ebc3d12eb88e67e 100644 (file)
@@ -197,8 +197,11 @@ public:
     virtual bool IsSortOrderAscending() const { return false; }
 
 private:
-    wxGrid * const m_grid;
-    const int m_col;
+    // these really should be const but are not because the column needs to be
+    // assignable to be used in a wxVector (in STL build, in non-STL build we
+    // avoid the need for this)
+    wxGrid *m_grid;
+    int m_col;
 };
 
 // header control retreiving column information from the grid