[Gpredict-svn] SF.net SVN: gpredict:[958] trunk
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
From: <aa...@us...> - 2011-11-22 02:19:05
|
Revision: 958 http://gpredict.svn.sourceforge.net/gpredict/?rev=958&view=rev Author: aa1vs Date: 2011-11-22 02:18:59 +0000 (Tue, 22 Nov 2011) Log Message: ----------- Apply compare function to all categories. Modified Paths: -------------- trunk/ChangeLog trunk/src/gtk-sat-selector.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2011-11-21 02:05:58 UTC (rev 957) +++ trunk/ChangeLog 2011-11-22 02:18:59 UTC (rev 958) @@ -1,5 +1,11 @@ 2011-11-21 Charles Suprin <hamaa1vs at gmail.com> + * src/gtk-sat-selector.c + Apply compare function to all categories. + + +2011-11-21 Charles Suprin <hamaa1vs at gmail.com> + * src/gtk-sat-map.c Apply consistent checking of pole to eliminate disagreements. (Bug 3437555: Graphical Glitch Plotting Footprints near pole) Modified: trunk/src/gtk-sat-selector.c =================================================================== --- trunk/src/gtk-sat-selector.c 2011-11-21 02:05:58 UTC (rev 957) +++ trunk/src/gtk-sat-selector.c 2011-11-22 02:18:59 UTC (rev 958) @@ -673,6 +673,11 @@ newmodel = GTK_TREE_MODEL (g_slist_nth_data (selector->models, sel)); /* We changed the GtkTreeModel so we need to reset the sort column ID */ + gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (newmodel), + GTK_SAT_SELECTOR_COL_NAME, + compare_func, + NULL, + NULL); gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (newmodel), GTK_SAT_SELECTOR_COL_NAME, GTK_SORT_ASCENDING); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |