diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/calendar-commands.c | 23 |
2 files changed, 6 insertions, 23 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 3a7baae15d..8aaee757ad 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2000-09-21 Federico Mena Quintero <federico@helixcode.com> + + * gui/calendar-commands.c (verbs): Removed the "about calendar" + command, since we don't want to have both "About Evolution" and + "About Calendar". + 2000-09-21 Michael Meeks <michael@helixcode.com> * gui/calendar-commands.c (calendar_control_activate): _UIHandler diff --git a/calendar/gui/calendar-commands.c b/calendar/gui/calendar-commands.c index 73271c0ce5..8443323f43 100644 --- a/calendar/gui/calendar-commands.c +++ b/calendar/gui/calendar-commands.c @@ -160,28 +160,6 @@ init_default_alarms (void) } #endif -static void -about_calendar_cmd (BonoboUIHandler *uih, void *user_data, const char *path) -{ - GtkWidget *about; - const gchar *authors[] = { - "Miguel de Icaza (miguel@kernel.org)", - "Federico Mena (federico@gimp.org)", - "Arturo Espinosa (arturo@nuclecu.unam.mx)", - "Russell Steinthal (rms39@columbia.edu)", - NULL - }; - - about = gnome_about_new (_("Gnome Calendar"), VERSION, - "(C) 1998 the Free Software Foundation", - authors, - _("The GNOME personal calendar and schedule manager."), - NULL); - gtk_window_set_modal (GTK_WINDOW (about), TRUE); - gnome_dialog_set_close (GNOME_DIALOG (about), TRUE); - gtk_widget_show (about); -} - /* Callback for the new appointment command */ static void new_appointment_cb (BonoboUIHandler *uih, void *user_data, const char *path) @@ -511,7 +489,6 @@ BonoboUIVerb verbs [] = { BONOBO_UI_VERB ("CalendarPrint", file_print_cb), BONOBO_UI_VERB ("EditNewAppointment", new_appointment_cb), BONOBO_UI_VERB ("CalendarPreferences", properties_cmd), - BONOBO_UI_VERB ("AboutCalendar", about_calendar_cmd), BONOBO_UI_VERB ("CalendarPrev", previous_clicked), BONOBO_UI_VERB ("CalendarToday", today_clicked), |