diff options
author | Ted Gould <ted@gould.cx> | 2009-11-30 13:28:20 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-11-30 13:28:20 -0600 |
commit | 44be8d22131ab3f6e2b4173da2af1dc5194919a8 (patch) | |
tree | b246e31d89f79defb4d3f2e8ba26a7c716e6f816 /src/indicator-custom.c | |
parent | f23c54ff5fee5587c31ecb8bf176b58fa3d4be1d (diff) | |
parent | f0881be3b8f779e0411958e6637f8f29e5697cbb (diff) | |
download | libayatana-appindicator-44be8d22131ab3f6e2b4173da2af1dc5194919a8.tar.gz libayatana-appindicator-44be8d22131ab3f6e2b4173da2af1dc5194919a8.tar.bz2 libayatana-appindicator-44be8d22131ab3f6e2b4173da2af1dc5194919a8.zip |
Getting the right named files.
Diffstat (limited to 'src/indicator-custom.c')
-rw-r--r-- | src/indicator-custom.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/indicator-custom.c b/src/indicator-custom.c deleted file mode 100644 index 1a09a9a..0000000 --- a/src/indicator-custom.c +++ /dev/null @@ -1,28 +0,0 @@ - -#include "libindicator/indicator.h" - -INDICATOR_SET_VERSION -INDICATOR_SET_NAME("indicator-custom") - -GtkLabel * -get_label (void) -{ - return NULL; -} - -GtkImage * -get_icon (void) -{ - return GTK_IMAGE(gtk_image_new()); -} - -GtkMenu * -get_menu (void) -{ - GtkMenu * main_menu = GTK_MENU(gtk_menu_new()); - GtkWidget * loading_item = gtk_menu_item_new_with_label("Loading..."); - gtk_menu_shell_append(GTK_MENU_SHELL(main_menu), loading_item); - gtk_widget_show(GTK_WIDGET(loading_item)); - - return main_menu; -} |