]> git.saurik.com Git - wxWidgets.git/commitdiff
No real changes, just make wxDataViewCtrlInternal::IsSorted() const.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 29 Apr 2012 23:22:32 +0000 (23:22 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 29 Apr 2012 23:22:32 +0000 (23:22 +0000)
This is a simple accessor, should have been const since the beginning.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71326 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/dataview.cpp

index 6e508cbbab83424cb3fd5bcd6828c3a8bc5419e4..13400266bd257a4b4b34b854f6db84abe1a8d18b 100644 (file)
@@ -268,7 +268,7 @@ public:
     void SetDataViewSortColumn( wxDataViewColumn *column ) { m_dataview_sort_column = column; }
     wxDataViewColumn *GetDataViewSortColumn()   { return m_dataview_sort_column; }
 
-    bool IsSorted()                             { return (m_sort_column >= 0); }
+    bool IsSorted() const                       { return m_sort_column >= 0; }
 
     // accessors
     wxDataViewModel* GetDataViewModel() { return m_wx_model; }