diff options
author | JP Rosevear <jpr@ximian.com> | 2003-04-17 23:52:41 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-04-17 23:52:41 +0800 |
commit | 1c0d5f2c846b7b87aae25305a662f420839d11a6 (patch) | |
tree | 02eb348a464c1ab25da1a52c7bcd2643f7186a5e /calendar/gui/dialogs | |
parent | 2c4e906e2f15d3894185f69e498ebd7622f992df (diff) | |
download | gsoc2013-evolution-1c0d5f2c846b7b87aae25305a662f420839d11a6.tar gsoc2013-evolution-1c0d5f2c846b7b87aae25305a662f420839d11a6.tar.gz gsoc2013-evolution-1c0d5f2c846b7b87aae25305a662f420839d11a6.tar.bz2 gsoc2013-evolution-1c0d5f2c846b7b87aae25305a662f420839d11a6.tar.lz gsoc2013-evolution-1c0d5f2c846b7b87aae25305a662f420839d11a6.tar.xz gsoc2013-evolution-1c0d5f2c846b7b87aae25305a662f420839d11a6.tar.zst gsoc2013-evolution-1c0d5f2c846b7b87aae25305a662f420839d11a6.zip |
Fixes #41459
2003-04-17 JP Rosevear <jpr@ximian.com>
Fixes #41459
* gui/dialogs/meeting-page.c: comment out delegation stuff
svn path=/trunk/; revision=20880
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r-- | calendar/gui/dialogs/meeting-page.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/meeting-page.c b/calendar/gui/dialogs/meeting-page.c index e786945f5f..e07724e34d 100644 --- a/calendar/gui/dialogs/meeting-page.c +++ b/calendar/gui/dialogs/meeting-page.c @@ -598,6 +598,7 @@ init_widgets (MeetingPage *mpage) G_CALLBACK (invite_cb), mpage); } +#if 0 static void popup_delegate_cb (GtkWidget *widget, gpointer data) { @@ -656,6 +657,7 @@ popup_delegate_cb (GtkWidget *widget, gpointer data) g_free (address); g_object_unref((edd)); } +#endif static void popup_delete_cb (GtkWidget *widget, gpointer data) @@ -705,10 +707,11 @@ enum { }; static EPopupMenu context_menu[] = { +#if 0 E_POPUP_ITEM (N_("_Delegate To..."), G_CALLBACK (popup_delegate_cb), CAN_DELEGATE), E_POPUP_SEPARATOR, - +#endif E_POPUP_ITEM (N_("_Delete"), G_CALLBACK (popup_delete_cb), CAN_DELETE), E_POPUP_TERMINATOR |