aboutsummaryrefslogtreecommitdiff
path: root/helper/test-loader.c
diff options
context:
space:
mode:
authorSebastien Bacher <seb128@ubuntu.com>2010-04-09 20:53:31 +0200
committerSebastien Bacher <seb128@ubuntu.com>2010-04-09 20:53:31 +0200
commitec36577978bd7e31c0f52083d5d9d05976edc2db (patch)
tree4e8150197b697ba1f15cd2a59e69d9d2511bfe69 /helper/test-loader.c
parent0cf6e6003e546c808968c2a1cd909e10be00a12f (diff)
parent478b7f7a65f1ed01a915d65631c28d82401b7f22 (diff)
downloadlibayatana-indicator-0.3.8-0ubuntu1.tar.gz
libayatana-indicator-0.3.8-0ubuntu1.tar.bz2
libayatana-indicator-0.3.8-0ubuntu1.zip
releasing version 0.3.8-0ubuntu10.3.8-0ubuntu1
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;
-}