aboutsummaryrefslogtreecommitdiff
path: root/helper/test-loader.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-04-09 11:58:23 -0500
committerTed Gould <ted@gould.cx>2010-04-09 11:58:23 -0500
commit6c48a234d189fbbb4041e204753f429e58e02ceb (patch)
treef6d2d9d640618be807bf9c657661aa2ab9a7b5e5 /helper/test-loader.c
parente9392e98b500f47f4eab225108196cd031f0038c (diff)
parent97035da02b08dc57b5a65b849e3e66284df53834 (diff)
downloadlibayatana-indicator-6c48a234d189fbbb4041e204753f429e58e02ceb.tar.gz
libayatana-indicator-6c48a234d189fbbb4041e204753f429e58e02ceb.tar.bz2
libayatana-indicator-6c48a234d189fbbb4041e204753f429e58e02ceb.zip
New upstream release.
Diffstat (limited to 'helper/test-loader.c')
-rw-r--r--helper/test-loader.c18
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;
-}