summaryrefslogtreecommitdiff
path: root/thumbnails.c
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2009-12-30 04:30:25 +0100
committerJon Bergli Heier <snakebite@jvnv.net>2009-12-30 04:30:25 +0100
commit4bff733352f608744e86328deb443d68ce666f7d (patch)
treee4bd26c2152fb19fe696e25ffffdb5198a22a508 /thumbnails.c
parenta5a787eac52734a926d39e958d22b87a450d42aa (diff)
Basic adding and assigning of tags implemented.
Committing this before it gets out of hand. Only adding new tags is working atm. Created a text input dialog. Added a tag dialog. Other minor changes.
Diffstat (limited to 'thumbnails.c')
-rw-r--r--thumbnails.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/thumbnails.c b/thumbnails.c
index e88c19d..33b0573 100644
--- a/thumbnails.c
+++ b/thumbnails.c
@@ -98,20 +98,6 @@ GdkPixbuf *get_thumbnail(const gchar *filepath) {
return pb2;
}
-static void fill_wall_list(GtkListStore *liststore, GArray *array) {
- GtkTreeIter iter;
-
- for(int i = 0; i < array->len; i++) {
- struct wallpaper_t *wall;
- wall = &g_array_index(array, struct wallpaper_t, i);
-
- gtk_list_store_append(liststore, &iter);
- gtk_list_store_set(liststore, &iter, 0, NULL, 1, wall->filepath, -1);
- g_free(wall->filepath);
- }
- g_array_free(array, TRUE);
-}
-
gpointer add_thumbs_thread(gpointer data) {
GtkListStore *liststore;
GtkTreeIter iter;