diff options
author | Ted Gould <ted@gould.cx> | 2010-03-10 11:45:53 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-03-10 11:45:53 -0600 |
commit | 636b9f97d012198242832a74ac70a471098a66c8 (patch) | |
tree | d9a61647073e9414dda8d17d1129a665b90ced8b /libindicator/indicator-image-helper.c | |
parent | 8e12685bab175ee6d494d7545c5c4187385e41eb (diff) | |
download | libayatana-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.c | 12 |
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; +} |