diff options
author | Kidd Wang <kiddwang@src.gnome.org> | 2004-03-29 14:16:47 +0800 |
---|---|---|
committer | Kidd Wang <kiddwang@src.gnome.org> | 2004-03-29 14:16:47 +0800 |
commit | fa9c9db0a6b3281b62b2fd38c536872df4206c60 (patch) | |
tree | 7816df223d795b97416373253e6e7330fdd00d62 /calendar/gui/e-calendar-view.h | |
parent | d4b41af00d2cee605499381395af3c19ba2a3081 (diff) | |
download | gsoc2013-evolution-fa9c9db0a6b3281b62b2fd38c536872df4206c60.tar.gz gsoc2013-evolution-fa9c9db0a6b3281b62b2fd38c536872df4206c60.tar.zst gsoc2013-evolution-fa9c9db0a6b3281b62b2fd38c536872df4206c60.zip |
remove the EVENT_MOVE signal which was binded to Alt + Arrows. ditto.
* gui/e-calendar-view.c: (e_calendar_view_class_init): remove the
EVENT_MOVE signal which was binded to Alt + Arrows.
* gui/e-calendar-view.h: ditto.
* gui/e-day-view.c: (e_day_view_class_init),
(e_day_view_do_key_press), (e_day_view_event_move): handle Alt + Arrows
in the more general place e_day_view_do_key_press so that we can avoid
the conflicting accessible key. When an appointment is selected,
pressing Alt + Arrows causes it to be moved around. Otherwise, pressing
Alt + LEFT/RIGHT will move the focus to the same day in the
previous/next week.
* gui/e-week-view.c: (e_week_view_class_init),
(e_week_view_event_move), (e_week_view_do_key_press): ditto.
svn path=/trunk/; revision=25219
Diffstat (limited to 'calendar/gui/e-calendar-view.h')
-rw-r--r-- | calendar/gui/e-calendar-view.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/calendar/gui/e-calendar-view.h b/calendar/gui/e-calendar-view.h index 4d72f1a0c4..9891989eea 100644 --- a/calendar/gui/e-calendar-view.h +++ b/calendar/gui/e-calendar-view.h @@ -95,7 +95,6 @@ struct _ECalendarViewClass { gboolean (* get_visible_time_range) (ECalendarView *cal_view, time_t *start_time, time_t *end_time); void (* update_query) (ECalendarView *cal_view); void (* open_event) (ECalendarView *cal_view); - void (* event_move) (ECalendarView *cal_view, ECalViewMoveDirection direction); }; GType e_calendar_view_get_type (void); |