diff options
author | Ted Gould <ted@canonical.com> | 2009-10-28 16:46:25 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-28 16:46:25 -0500 |
commit | 0220cc7a435f3f03761697afd316ac1b86a10211 (patch) | |
tree | d612bfedf1888385c5e5e6a5c7d0f3c530f19dcb /tests/dummy-indicator-null.c | |
parent | b5f41d1c0ca30f1cf7379e754d906681ccfbe9e1 (diff) | |
parent | b98a4811a0b03335da1fad3d0e0bce08bdad2a00 (diff) | |
download | libayatana-indicator-0220cc7a435f3f03761697afd316ac1b86a10211.tar.gz libayatana-indicator-0220cc7a435f3f03761697afd316ac1b86a10211.tar.bz2 libayatana-indicator-0220cc7a435f3f03761697afd316ac1b86a10211.zip |
Grabbing the loader branch
Diffstat (limited to 'tests/dummy-indicator-null.c')
-rw-r--r-- | tests/dummy-indicator-null.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/dummy-indicator-null.c b/tests/dummy-indicator-null.c new file mode 100644 index 0000000..ff99d71 --- /dev/null +++ b/tests/dummy-indicator-null.c @@ -0,0 +1,23 @@ + +#include "libindicator/indicator.h" + +INDICATOR_SET_VERSION +INDICATOR_SET_NAME("dummy-indicator-null") + +GtkLabel * +get_label (void) +{ + return NULL; +} + +GtkImage * +get_icon (void) +{ + return NULL; +} + +GtkMenu * +get_menu (void) +{ + return NULL; +} |