2005-07-15 [paul] 1.9.12cvs56
authorPaul Mangan <paul@claws-mail.org>
Fri, 15 Jul 2005 13:47:57 +0000 (13:47 +0000)
committerPaul Mangan <paul@claws-mail.org>
Fri, 15 Jul 2005 13:47:57 +0000 (13:47 +0000)
* src/gtk/pluginwindow.c
sort plugin list alphabetically

ChangeLog-gtk2.claws
PATCHSETS
configure.ac
src/gtk/pluginwindow.c

index acc1d7333b3f95d086ab88b08197ef63d3d27e29..8bee954dde6ee7708a4eaaff812f12c310e6a23e 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-15 [paul]      1.9.12cvs56
+
+       * src/gtk/pluginwindow.c
+               sort plugin list alphabetically
+
 2005-07-15 [paul]      1.9.12cvs55
 
        * src/prefs_spelling.c
index d882f591324e44a6728de8ac036a36a8205d1583..f1d4a2f42be4bc2f97ca1c9a62ab94b34630fab3 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.1.2.3 -r 1.1.2.4 src/prefs_message.c;  ) > 1.9.12cvs53.patchset
 ( cvs diff -u -r 1.1.2.9 -r 1.1.2.10 src/wizard.c;  ) > 1.9.12cvs54.patchset
 ( cvs diff -u -r 1.5.2.8 -r 1.5.2.9 src/prefs_spelling.c;  cvs diff -u -r 1.1.2.5 -r 1.1.2.6 src/prefs_wrapping.c;  ) > 1.9.12cvs55.patchset
+( cvs diff -u -r 1.5.2.17 -r 1.5.2.18 src/gtk/pluginwindow.c;  ) > 1.9.12cvs56.patchset
index 3fa4218ca2b607b717ecbd6bc74fdb0b992ea0d5..706805dc69330e1ad42cf60027b8eab1b9db175b 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=12
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=55
+EXTRA_VERSION=56
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index 8ad47d64e79fb426d715a67fdf15ba91f1703ef8..6857616f8168b1992f9fe462a0ab558b3d0d8ecf 100644 (file)
@@ -82,6 +82,8 @@ static void set_plugin_list(PluginWindow *pluginwindow)
 
        store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW
                                (pluginwindow->plugin_list_view)));
+       gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(store),
+                                             0, GTK_SORT_ASCENDING);
        gtk_list_store_clear(store);
        
        textbuf = gtk_text_view_get_buffer(GTK_TEXT_VIEW(pluginwindow->plugin_desc));