diff options
author | Robert Tari <robert@tari.in> | 2021-02-11 15:29:17 +0100 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-05-12 12:50:11 +0200 |
commit | e20daf604e81ebd473c74dedda725bca27cd8dd1 (patch) | |
tree | 9326e570a08ba08db1ffdcd189317bf2ab6b5ebe /helper | |
parent | 1fa174f54c9604499f059489e544cfc59c825f27 (diff) | |
download | libayatana-indicator-e20daf604e81ebd473c74dedda725bca27cd8dd1.tar.gz libayatana-indicator-e20daf604e81ebd473c74dedda725bca27cd8dd1.tar.bz2 libayatana-indicator-e20daf604e81ebd473c74dedda725bca27cd8dd1.zip |
Remove Automake-related files
Diffstat (limited to 'helper')
-rwxr-xr-x | helper/test-loader-build | 3 | ||||
-rw-r--r-- | helper/test-loader.c | 18 |
2 files changed, 0 insertions, 21 deletions
diff --git a/helper/test-loader-build b/helper/test-loader-build deleted file mode 100755 index fa1e006..0000000 --- a/helper/test-loader-build +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -gcc `pkg-config --cflags --libs gtk+-2.0` -I../libindicator/ test-loader.c ../libindicator/indicator-image-helper.c -o test-loader 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; -} |