comparison src/collect-io.c @ 235:a154d41fd666

Make collect_manager_process_action() static.
author zas_
date Thu, 03 Apr 2008 20:38:59 +0000
parents 5bdab7ed4bcd
children 92ac59ffd928
comparison
equal deleted inserted replaced
234:39262b9ce195 235:a154d41fd666
31 static void collection_load_thumb_step(CollectionData *cd); 31 static void collection_load_thumb_step(CollectionData *cd);
32 static gint collection_save_private(CollectionData *cd, const gchar *path); 32 static gint collection_save_private(CollectionData *cd, const gchar *path);
33 33
34 static CollectManagerEntry *collect_manager_get_entry(const gchar *path); 34 static CollectManagerEntry *collect_manager_get_entry(const gchar *path);
35 static void collect_manager_entry_reset(CollectManagerEntry *entry); 35 static void collect_manager_entry_reset(CollectManagerEntry *entry);
36 36 static gint collect_manager_process_action(CollectManagerEntry *entry, gchar **path_ptr);
37 37
38 38
39 static gint scan_geometry(gchar *buffer, gint *x, gint *y, gint *w, gint *h) 39 static gint scan_geometry(gchar *buffer, gint *x, gint *y, gint *w, gint *h)
40 { 40 {
41 gint nx, ny, nw, nh; 41 gint nx, ny, nw, nh;
635 g_hash_table_insert(entry->newpath_hash, action->newpath, action); 635 g_hash_table_insert(entry->newpath_hash, action->newpath, action);
636 } 636 }
637 collect_manager_action_ref(action); 637 collect_manager_action_ref(action);
638 } 638 }
639 639
640 gint collect_manager_process_action(CollectManagerEntry *entry, gchar **path_ptr) 640 static gint collect_manager_process_action(CollectManagerEntry *entry, gchar **path_ptr)
641 { 641 {
642 gchar *path = *path_ptr; 642 gchar *path = *path_ptr;
643 CollectManagerAction *action; 643 CollectManagerAction *action;
644 644
645 if (path == NULL) 645 if (path == NULL)