aboutsummaryrefslogtreecommitdiff
path: root/libindicator/indicator-image-helper.c
diff options
context:
space:
mode:
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;
+}