diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-09-22 06:35:01 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-09-22 06:35:01 +0800 |
commit | 99575765f4a4b9d69f56906bac1d144503179050 (patch) | |
tree | 55f6b79c1934406a9ea86237da35eedd73478150 /calendar/gui | |
parent | 3af120103084dec827ae3026da10adb67fd89a79 (diff) | |
download | gsoc2013-evolution-99575765f4a4b9d69f56906bac1d144503179050.tar gsoc2013-evolution-99575765f4a4b9d69f56906bac1d144503179050.tar.gz gsoc2013-evolution-99575765f4a4b9d69f56906bac1d144503179050.tar.bz2 gsoc2013-evolution-99575765f4a4b9d69f56906bac1d144503179050.tar.lz gsoc2013-evolution-99575765f4a4b9d69f56906bac1d144503179050.tar.xz gsoc2013-evolution-99575765f4a4b9d69f56906bac1d144503179050.tar.zst gsoc2013-evolution-99575765f4a4b9d69f56906bac1d144503179050.zip |
Removed the "about calendar" command, since we don't want to have both
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".
svn path=/trunk/; revision=5545
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/calendar-commands.c | 23 |
1 files changed, 0 insertions, 23 deletions
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), |