diff options
author | nobody <nobody@localhost> | 1999-03-11 07:16:04 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-03-11 07:16:04 +0800 |
commit | 304334533525006f73f223281e407170be4455b3 (patch) | |
tree | acac9833d59d9db26faf0577053dbe9c8f8e4c8b /calendar/popup-menu.c | |
parent | 1b383b0fa71f05423f333fc0afcd049a643dca74 (diff) | |
download | gsoc2013-evolution-0-18.tar gsoc2013-evolution-0-18.tar.gz gsoc2013-evolution-0-18.tar.bz2 gsoc2013-evolution-0-18.tar.lz gsoc2013-evolution-0-18.tar.xz gsoc2013-evolution-0-18.tar.zst gsoc2013-evolution-0-18.zip |
This commit was manufactured by cvs2svn to create tag 'v0-18'.v0-18
svn path=/tags/v0-18/; revision=755
Diffstat (limited to 'calendar/popup-menu.c')
-rw-r--r-- | calendar/popup-menu.c | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/calendar/popup-menu.c b/calendar/popup-menu.c deleted file mode 100644 index 3686183146..0000000000 --- a/calendar/popup-menu.c +++ /dev/null @@ -1,37 +0,0 @@ -/* Popup menu utilities for gncal - * - * Copyright (C) 1998 The Free Software Foundation - * - * Author: Federico Mena <quartic@gimp.org> - */ - -#include <config.h> -#include <gnome.h> -#include "popup-menu.h" - - -void -popup_menu (struct menu_item *items, int nitems, GdkEventButton *event) -{ - GtkWidget *menu; - GtkWidget *item; - int i; - - menu = gtk_menu_new (); /* FIXME: this baby is never freed */ - - for (i = 0; i < nitems; i++) { - if (items[i].text) { - item = gtk_menu_item_new_with_label (_(items[i].text)); - gtk_signal_connect (GTK_OBJECT (item), "activate", - items[i].callback, - items[i].data); - gtk_widget_set_sensitive (item, items[i].sensitive); - } else - item = gtk_menu_item_new (); - - gtk_widget_show (item); - gtk_menu_append (GTK_MENU (menu), item); - } - - gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL, event->button, event->time); -} |