]> git.saurik.com Git - wxWidgets.git/commitdiff
No changes, just get rid of wxDataViewColumn::GetConstGtkHandle().
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 26 Apr 2011 22:56:56 +0000 (22:56 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 26 Apr 2011 22:56:56 +0000 (22:56 +0000)
If both const and non-const accessors are needed, it's custom to use the same
name for both but in this case we don't even need them as the const version
can always be used, so simply remove the weird and badly named (because the
returned handle is not const at all) GetConstGtkHandle().

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

include/wx/gtk/dataview.h
src/gtk/dataview.cpp

index 7a23a2e9bb92f6e393afb4bf26751717faa8e5a7..9ff89012ec1e4b6abf376030f467421b335c773f 100644 (file)
@@ -76,8 +76,7 @@ public:
     virtual int GetFlags() const { return GetFromIndividualFlags(); }
 
     // implementation
-    GtkWidget* GetGtkHandle() { return m_column; }
-    GtkWidget* GetConstGtkHandle() const { return m_column; }
+    GtkWidget* GetGtkHandle() const { return m_column; }
 
 private:
     // holds the GTK handle
index 6be2f8b81b47be77547c9ed8db56240d40e10caa..6201a6c42dc977918f9d6d27661ee5487bd58772 100644 (file)
@@ -4735,7 +4735,7 @@ bool wxDataViewCtrl::ClearColumns()
 
 int wxDataViewCtrl::GetColumnPosition( const wxDataViewColumn *column ) const
 {
-    GtkTreeViewColumn *gtk_column = GTK_TREE_VIEW_COLUMN(column->GetConstGtkHandle());
+    GtkTreeViewColumn *gtk_column = GTK_TREE_VIEW_COLUMN(column->GetGtkHandle());
 
     GList *list = gtk_tree_view_get_columns( GTK_TREE_VIEW(m_treeview) );