trying to add sorting to Theme list
authorvlad <vlad@vlanout.(none)>
Sun, 15 Aug 2010 05:19:52 +0000 (08:19 +0300)
committervlad <vlad@vlanout.(none)>
Sun, 15 Aug 2010 05:19:52 +0000 (08:19 +0300)
applet/src/livewp-exthemes.c

index 958631f..be27781 100644 (file)
@@ -50,6 +50,12 @@ parse_theme(gchar *file){
     return hash;
 }
 
+/*******************************************************************************/
+gint compar (gpointer a, gpointer b){
+    return strcmp( (char*)a, (char*)b );
+}
+
+
 GSList *
 get_list_exthemes(void){
     Dirent  *dp;
@@ -70,5 +76,6 @@ get_list_exthemes(void){
         }
         closedir(dir_fd);
     }
+    store = g_slist_sort(store, compar);
     return store;
 }