X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/7378b5081fde6f48140327d5c072a8231934f027..54156c626b7377cd012b1de85679801d59da8a09:/disobedience/misc.c diff --git a/disobedience/misc.c b/disobedience/misc.c index 1e5ee22..8c4ed09 100644 --- a/disobedience/misc.c +++ b/disobedience/misc.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2006, 2007 Richard Kettlewell + * Copyright (C) 2006-2008 Richard Kettlewell * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -33,8 +33,6 @@ struct image { /* Miscellaneous GTK+ stuff ------------------------------------------------ */ -WT(cached_image); - /* Functions */ /** @brief Put scrollbars around a widget @@ -109,7 +107,7 @@ GdkPixbuf *find_image(const char *name) { int n; if(!(pb = (GdkPixbuf *)cache_get(&image_cache_type, name))) { - if((n = TABLE_FIND(images, struct image, name, name)) >= 0) { + if((n = TABLE_FIND(images, name, name)) >= 0) { /* Use the built-in copy */ if(!(pb = gdk_pixbuf_new_from_inline(-1, images[n].data, FALSE, &err))) { error(0, "%s", err->message); @@ -123,7 +121,6 @@ GdkPixbuf *find_image(const char *name) { return 0; } } - NW(cached_image); cache_put(&image_cache_type, name, pb); } return pb; @@ -167,13 +164,10 @@ GtkWidget *iconbutton(const char *path, const char *tip) { GtkWidget *button, *content; GdkPixbuf *pb; - NW(button); button = gtk_button_new(); if((pb = find_image(path))) { - NW(image); content = gtk_image_new_from_pixbuf(pb); } else { - NW(label); content = gtk_label_new(path); } gtk_widget_set_style(button, tool_style);