diff options
author | Damon Chaplin <damon@ximian.com> | 2001-10-27 08:07:29 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2001-10-27 08:07:29 +0800 |
commit | 7b5415e5005aa1b7142d288af466b58b7e95ac42 (patch) | |
tree | 0204cc0c59e6c3b8bbb5c1fb556fed1b3a04f6d7 /calendar/gui/e-day-view.c | |
parent | 067aaf149ec31e530a344167f59a895eefb350b8 (diff) | |
download | gsoc2013-evolution-7b5415e5005aa1b7142d288af466b58b7e95ac42.tar.gz gsoc2013-evolution-7b5415e5005aa1b7142d288af466b58b7e95ac42.tar.zst gsoc2013-evolution-7b5415e5005aa1b7142d288af466b58b7e95ac42.zip |
convert the formatted date to UTF-8.
2001-10-26 Damon Chaplin <damon@ximian.com>
* gui/e-itip-control.c (write_label_piece): convert the formatted
date to UTF-8.
* cal-util/cal-recur.c (CAL_OBJ_DEBUG): turn off debug functions.
* gui/dialogs/comp-editor-util.c (parse_contact_string): handle UTF8
correctly. Bug #4450. Good enough for 1.0.
* gui/e-week-view-event-item.c (e_week_view_draw_time): set the gc
color before drawing. Should fix bug #11469.
* gui/dialogs/task-editor.c (task_editor_edit_comp): show or hide the
meeting page as appropriate. Note this may be called more than once,
if the task gets updated somewhere else and the user clicks 'Update
the object'. Hopefully fixes bug #12930.
* gui/print.c (print_comp_item): printed more fields and made a little
prettier. Fixes bug #9352.
(print_date_label): used the correct timezones for each date field.
* *.c: removed several debug messages.
svn path=/trunk/; revision=14187
Diffstat (limited to 'calendar/gui/e-day-view.c')
-rw-r--r-- | calendar/gui/e-day-view.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c index 26597071ed..001c56aad0 100644 --- a/calendar/gui/e-day-view.c +++ b/calendar/gui/e-day-view.c @@ -3000,7 +3000,9 @@ e_day_view_on_main_canvas_button_press (GtkWidget *widget, gint event_x, event_y, scroll_x, scroll_y, row, day, event_num; EDayViewPosition pos; +#if 0 g_print ("In e_day_view_on_main_canvas_button_press\n"); +#endif /* Handle scroll wheel events */ if (event->button == 4) { @@ -3864,7 +3866,9 @@ e_day_view_on_main_canvas_button_release (GtkWidget *widget, GdkEventButton *event, EDayView *day_view) { +#if 0 g_print ("In e_day_view_on_main_canvas_button_release\n"); +#endif if (day_view->selection_is_being_dragged) { gdk_pointer_ungrab (event->time); @@ -5538,7 +5542,9 @@ e_day_view_on_text_item_event (GnomeCanvasItem *item, } break; case GDK_2BUTTON_PRESS: +#if 0 g_print ("Item got double-click\n"); +#endif break; case GDK_BUTTON_PRESS: |