diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-12 06:46:58 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-12 06:46:58 +0800 |
commit | 0fd45526f9ade69b1209378015c3cd8e9848de49 (patch) | |
tree | ce8e39b0144d74331cc7075cb34a49a9f635deb3 | |
parent | 54ebf885b1dc0211bb2c30d7b58afd32b5a13470 (diff) | |
download | gsoc2013-evolution-0fd45526f9ade69b1209378015c3cd8e9848de49.tar gsoc2013-evolution-0fd45526f9ade69b1209378015c3cd8e9848de49.tar.gz gsoc2013-evolution-0fd45526f9ade69b1209378015c3cd8e9848de49.tar.bz2 gsoc2013-evolution-0fd45526f9ade69b1209378015c3cd8e9848de49.tar.lz gsoc2013-evolution-0fd45526f9ade69b1209378015c3cd8e9848de49.tar.xz gsoc2013-evolution-0fd45526f9ade69b1209378015c3cd8e9848de49.tar.zst gsoc2013-evolution-0fd45526f9ade69b1209378015c3cd8e9848de49.zip |
Update the paths of the Tools menu according to the changes in the XML
* gui/tasks-control.c: Update the paths of the Tools menu
according to the changes in the XML [i.e. things are moved to the
ComponentToolsPlaceholder].
* gui/calendar-commands.c: Likewise.
svn path=/trunk/; revision=11923
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | calendar/gui/calendar-commands.c | 24 | ||||
-rw-r--r-- | calendar/gui/tasks-control.c | 12 |
3 files changed, 26 insertions, 18 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 6758ff9c8b..ca562a340f 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,11 @@ +2001-08-11 Ettore Perazzoli <ettore@ximian.com> + + * gui/tasks-control.c: Update the paths of the Tools menu + according to the changes in the XML [i.e. things are moved to the + ComponentToolsPlaceholder]. + + * gui/calendar-commands.c: Likewise. + 2001-08-11 Damon Chaplin <damon@ximian.com> * gui/dialogs/event-page.c (init_widgets): diff --git a/calendar/gui/calendar-commands.c b/calendar/gui/calendar-commands.c index 12fe653619..bbece6dc90 100644 --- a/calendar/gui/calendar-commands.c +++ b/calendar/gui/calendar-commands.c @@ -499,18 +499,18 @@ static BonoboUIVerb verbs [] = { static EPixmap pixmaps [] = { - E_PIXMAP ("/menu/File/New/NewFirstItem/NewAppointment", "new_appointment.xpm"), - E_PIXMAP ("/menu/File/Print/Print", "print.xpm"), - E_PIXMAP ("/menu/File/Print/PrintPreview", "print-preview.xpm"), - E_PIXMAP ("/menu/Actions/Component/NewAppointment", "new_appointment.xpm"), - E_PIXMAP ("/menu/Tools/Component/CalendarSettings", "configure_16_calendar.xpm"), - - E_PIXMAP ("/Toolbar/New", "buttons/new_appointment.png"), - E_PIXMAP ("/Toolbar/Print", "buttons/print.png"), - E_PIXMAP ("/Toolbar/DayView", "buttons/dayview.xpm"), - E_PIXMAP ("/Toolbar/WorkWeekView", "buttons/workweekview.xpm"), - E_PIXMAP ("/Toolbar/WeekView", "buttons/weekview.xpm"), - E_PIXMAP ("/Toolbar/MonthView", "buttons/monthview.xpm"), + E_PIXMAP ("/menu/File/New/NewFirstItem/NewAppointment", "new_appointment.xpm"), + E_PIXMAP ("/menu/File/Print/Print", "print.xpm"), + E_PIXMAP ("/menu/File/Print/PrintPreview", "print-preview.xpm"), + E_PIXMAP ("/menu/ComponentActionsPlaceholder/Actions/NewAppointment", "new_appointment.xpm"), + E_PIXMAP ("/menu/ComponentToolsPlaceholder/Tools/CalendarSettings", "configure_16_calendar.xpm"), + + E_PIXMAP ("/Toolbar/New", "buttons/new_appointment.png"), + E_PIXMAP ("/Toolbar/Print", "buttons/print.png"), + E_PIXMAP ("/Toolbar/DayView", "buttons/dayview.xpm"), + E_PIXMAP ("/Toolbar/WorkWeekView", "buttons/workweekview.xpm"), + E_PIXMAP ("/Toolbar/WeekView", "buttons/weekview.xpm"), + E_PIXMAP ("/Toolbar/MonthView", "buttons/monthview.xpm"), E_PIXMAP_END }; diff --git a/calendar/gui/tasks-control.c b/calendar/gui/tasks-control.c index 0a447db78d..3d677ebb09 100644 --- a/calendar/gui/tasks-control.c +++ b/calendar/gui/tasks-control.c @@ -245,12 +245,12 @@ static BonoboUIVerb verbs [] = { }; static EPixmap pixmaps [] = { - E_PIXMAP ("/menu/File/New/NewFirstItem/NewTask", "evolution-tasks-mini.png"), - E_PIXMAP ("/menu/File/Print/Print", "print.xpm"), - E_PIXMAP ("/menu/File/Print/Print Preview", "print-preview.xpm"), - E_PIXMAP ("/menu/Tools/Component/TasksSettings", "configure_16_calendar.xpm"), - E_PIXMAP ("/Toolbar/New", "buttons/new_appointment.png"), - E_PIXMAP ("/Toolbar/Print", "buttons/print.png"), + E_PIXMAP ("/menu/File/New/NewFirstItem/NewTask", "evolution-tasks-mini.png"), + E_PIXMAP ("/menu/File/Print/Print", "print.xpm"), + E_PIXMAP ("/menu/File/Print/Print Preview", "print-preview.xpm"), + E_PIXMAP ("/menu/ComponentToolsPlaceholder/Tools/TasksSettings", "configure_16_calendar.xpm"), + E_PIXMAP ("/Toolbar/New", "buttons/new_appointment.png"), + E_PIXMAP ("/Toolbar/Print", "buttons/print.png"), E_PIXMAP_END }; |