aboutsummaryrefslogtreecommitdiff
path: root/helper/test-loader.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-04-09 11:57:53 -0500
committerTed Gould <ted@gould.cx>2010-04-09 11:57:53 -0500
commit97035da02b08dc57b5a65b849e3e66284df53834 (patch)
tree44f7d6821a90928295aafa54509ff2c4562a8db4 /helper/test-loader.c
parent999f1483f967db63d71ff2a9453b5866eec339bf (diff)
parentee0f45f6eee073fc3f3329aef08888cff0e6c8c3 (diff)
downloadlibayatana-indicator-97035da02b08dc57b5a65b849e3e66284df53834.tar.gz
libayatana-indicator-97035da02b08dc57b5a65b849e3e66284df53834.tar.bz2
libayatana-indicator-97035da02b08dc57b5a65b849e3e66284df53834.zip
Import upstream version 0.3.7
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;
-}