aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/popup-menu.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-02-04 12:10:39 +0800
committernobody <nobody@localhost>2001-02-04 12:10:39 +0800
commit541ed6bf346abe33775bfa8fbe4361d53a02924d (patch)
tree0a5b66655b7f9f6e527155bcabd2f7470e429a8b /calendar/gui/popup-menu.h
parent1b96583c0c6142969e366409bdfd371f078fc683 (diff)
downloadgsoc2013-evolution-BEFORE_BOBJECT.tar
gsoc2013-evolution-BEFORE_BOBJECT.tar.gz
gsoc2013-evolution-BEFORE_BOBJECT.tar.bz2
gsoc2013-evolution-BEFORE_BOBJECT.tar.lz
gsoc2013-evolution-BEFORE_BOBJECT.tar.xz
gsoc2013-evolution-BEFORE_BOBJECT.tar.zst
gsoc2013-evolution-BEFORE_BOBJECT.zip
This commit was manufactured by cvs2svn to create tagBEFORE_BOBJECT
'BEFORE_BOBJECT'. svn path=/tags/BEFORE_BOBJECT/; revision=7953
Diffstat (limited to 'calendar/gui/popup-menu.h')
-rw-r--r--calendar/gui/popup-menu.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/calendar/gui/popup-menu.h b/calendar/gui/popup-menu.h
deleted file mode 100644
index a4590dbb98..0000000000
--- a/calendar/gui/popup-menu.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/* Popup menu utilities for gncal
- *
- * Copyright (C) 1998 The Free Software Foundation
- *
- * Author: Federico Mena <quartic@gimp.org>
- */
-
-#ifndef POPUP_MENU_H
-#define POPUP_MENU_H
-
-#include <gdk/gdktypes.h>
-#include <gtk/gtksignal.h>
-
-
-struct menu_item {
- char *text;
- GtkSignalFunc callback;
- gpointer data;
- int sensitive;
-};
-
-void popup_menu (struct menu_item *items, int nitems, GdkEventButton *event);
-
-
-#endif