Skip to content

Commit

Permalink
Remove commented out code.
Browse files Browse the repository at this point in the history
  • Loading branch information
zas committed Aug 30, 2012
1 parent fe6bdd9 commit e23cc76
Showing 1 changed file with 0 additions and 47 deletions.
47 changes: 0 additions & 47 deletions src/collect.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,6 @@ gboolean collection_info_load_thumb(CollectInfo *ci)

log_printf("collection_info_load_thumb not implemented!\n(because an instant thumb loader not implemented)");
return FALSE;
#if 0
if (create_thumbnail(ci->fd->path, &ci->pixmap, &ci->mask) < 0) return FALSE;

if (ci->pixmap) gdk_pixmap_ref(ci->pixmap);
if (ci->mask) gdk_bitmap_ref(ci->mask);

return TRUE;
#endif
}

void collection_list_free(GList *list)
Expand Down Expand Up @@ -254,38 +246,6 @@ CollectInfo *collection_list_find_fd(GList *list, FileData *fd)
return NULL;
}

#if 0
static GList *collection_list_find_link(GList *list, gchar *path)
{
GList *work = list;

while (work)
{
CollectInfo *ci = work->data;
if (strcmp(ci->fd->path, path) == 0) return work;
work = work->next;
}

return NULL;
}

static gint collection_list_find_index(GList *list, gchar *path)
{
gint c = 0;
GList *work = list;

while (work)
{
CollectInfo *ci = work->data;
if (strcmp(ci->fd->path, path) == 0) return c;
work = work->next;
c++;
}

return -1;
}
#endif

GList *collection_list_to_filelist(GList *list)
{
GList *filelist = NULL;
Expand Down Expand Up @@ -1026,13 +986,6 @@ static void collection_window_insert(CollectWindow *cw, CollectInfo *ci)
if (!cw) return;
}

#if 0
static void collection_window_move(CollectWindow *cw, CollectInfo *ci)
{
if (!cw) return;
}
#endif

static void collection_window_remove(CollectWindow *cw, CollectInfo *ci)
{
if (!cw) return;
Expand Down

0 comments on commit e23cc76

Please sign in to comment.