diff options
author | Ted Gould <ted@canonical.com> | 2008-12-04 16:34:45 -0800 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2008-12-04 16:34:45 -0800 |
commit | 76713f09cbc4543756e17d5afe56c42b6e71c847 (patch) | |
tree | 77c85d466c6f0db9b774e9d0effc4cb491387acd /src | |
download | ayatana-indicator-session-76713f09cbc4543756e17d5afe56c42b6e71c847.tar.gz ayatana-indicator-session-76713f09cbc4543756e17d5afe56c42b6e71c847.tar.bz2 ayatana-indicator-session-76713f09cbc4543756e17d5afe56c42b6e71c847.zip |
Checkmark checkin
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 5 | ||||
-rw-r--r-- | src/indicator-messages.c | 12 |
2 files changed, 17 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..86b3234 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,5 @@ + +messaginglibdir = $(libdir)/indicators +messaginglib_LTLIBRARIES = messaging.la +messaging_la_SOURCES = indicator-messages.c \ + indicator-messages.h diff --git a/src/indicator-messages.c b/src/indicator-messages.c new file mode 100644 index 0000000..3b63a4b --- /dev/null +++ b/src/indicator-messages.c @@ -0,0 +1,12 @@ + +#include <gtk/gtk.h> +#include "indicator-messages.h" + +GtkWidget * +get_menu_item (void) +{ + GtkWidget * main = gtk_menu_item_new_with_label("Message Me"); + + return main; +} + |