[gnote] Remove deprecated set_sort_column_id in bugzilla



commit 436b49bd1501c45740c29294380aa670732557ef
Author: Aurimas Ä?ernius <aurisc4 gmail com>
Date:   Tue May 31 22:23:41 2011 +0300

    Remove deprecated set_sort_column_id in bugzilla
    
    Replace it by set_sort_column.

 src/addins/bugzilla/bugzillapreferences.cpp |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/addins/bugzilla/bugzillapreferences.cpp b/src/addins/bugzilla/bugzillapreferences.cpp
index bb2db48..5c24c18 100644
--- a/src/addins/bugzilla/bugzillapreferences.cpp
+++ b/src/addins/bugzilla/bugzillapreferences.cpp
@@ -1,6 +1,7 @@
 /*
  * gnote
  *
+ * Copyright (C) 2011 Aurimas Cernius
  * Copyright (C) 2010 Debarshi Ray
  * Copyright (C) 2009 Hubert Figuiere
  *
@@ -67,7 +68,7 @@ namespace bugzilla {
     pack_start(*l, false, false, 0);
 
     icon_store = Gtk::ListStore::create(m_columns);
-    icon_store->set_sort_column_id(m_columns.host, Gtk::SORT_ASCENDING);
+    icon_store->set_sort_column(m_columns.host, Gtk::SORT_ASCENDING);
 
     icon_tree = manage(new Gtk::TreeView (icon_store));
     icon_tree->set_headers_visible(true);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]