diff options
Diffstat (limited to 'helper/test-loader.c')
-rw-r--r-- | helper/test-loader.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/helper/test-loader.c b/helper/test-loader.c deleted file mode 100644 index 6a06248..0000000 --- a/helper/test-loader.c +++ /dev/null @@ -1,18 +0,0 @@ - -#include <gtk/gtk.h> -#include "indicator-image-helper.h" - -int -main (int argv, char * argc[]) -{ - gtk_init(&argv, &argc); - - GtkImage * image = indicator_image_helper(argc[1]); - - GdkPixbuf * pixbuf = gtk_image_get_pixbuf(image); - - g_debug("Pixbuf width: %d", gdk_pixbuf_get_width(pixbuf)); - g_debug("Pixbuf height: %d", gdk_pixbuf_get_height(pixbuf)); - - return; -} |