aboutsummaryrefslogtreecommitdiff
path: root/libindicator/indicator-image-helper.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-03-10 11:45:53 -0600
committerTed Gould <ted@gould.cx>2010-03-10 11:45:53 -0600
commit636b9f97d012198242832a74ac70a471098a66c8 (patch)
treed9a61647073e9414dda8d17d1129a665b90ced8b /libindicator/indicator-image-helper.c
parent8e12685bab175ee6d494d7545c5c4187385e41eb (diff)
downloadlibayatana-indicator-636b9f97d012198242832a74ac70a471098a66c8.tar.gz
libayatana-indicator-636b9f97d012198242832a74ac70a471098a66c8.tar.bz2
libayatana-indicator-636b9f97d012198242832a74ac70a471098a66c8.zip
Adding in an image helper library.
Diffstat (limited to 'libindicator/indicator-image-helper.c')
-rw-r--r--libindicator/indicator-image-helper.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/libindicator/indicator-image-helper.c b/libindicator/indicator-image-helper.c
new file mode 100644
index 0000000..9d487fd
--- /dev/null
+++ b/libindicator/indicator-image-helper.c
@@ -0,0 +1,12 @@
+
+#include "indicator-image-helper.h"
+
+GtkImage *
+indicator_image_helper (const gchar * name)
+{
+ g_return_val_if_fail(name != NULL, NULL);
+ g_return_val_if_fail(name[0] != '\0', NULL);
+
+
+ return NULL;
+}