diff options
author | Damon Chaplin <damon@helixcode.com> | 2000-09-06 08:10:39 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2000-09-06 08:10:39 +0800 |
commit | 6403bd5b4def7c610285d2aaad10e793b321091d (patch) | |
tree | f2a8cb4cab2e72a42c881e036067fbe5517d1a64 /widgets/misc/e-calendar.c | |
parent | d9da6499c0dbb37c30e940bbb2100132f7ddf489 (diff) | |
download | gsoc2013-evolution-6403bd5b4def7c610285d2aaad10e793b321091d.tar.gz gsoc2013-evolution-6403bd5b4def7c610285d2aaad10e793b321091d.tar.zst gsoc2013-evolution-6403bd5b4def7c610285d2aaad10e793b321091d.zip |
make sure we get the start_weekday since we need it for draw_days(). Fixes
2000-09-05 Damon Chaplin <damon@helixcode.com>
* e-calendar-item.c (e_calendar_item_draw_month): make sure we get
the start_weekday since we need it for draw_days(). Fixes a drawing
bug.
2000-08-31 Damon Chaplin <damon@helixcode.com>
* e-calendar-item.c (e_calendar_item_button_press):
(e_calendar_item_button_release): grab/ungrab the pointer so we
always get the button_release event.
svn path=/trunk/; revision=5216
Diffstat (limited to 'widgets/misc/e-calendar.c')
-rw-r--r-- | widgets/misc/e-calendar.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/widgets/misc/e-calendar.c b/widgets/misc/e-calendar.c index 33a6874562..760e64a2cb 100644 --- a/widgets/misc/e-calendar.c +++ b/widgets/misc/e-calendar.c @@ -688,7 +688,9 @@ e_calendar_drag_motion (GtkWidget *widget, cal = E_CALENDAR (widget); +#if 0 g_print ("In e_calendar_drag_motion\n"); +#endif return FALSE; } @@ -705,6 +707,8 @@ e_calendar_drag_leave (GtkWidget *widget, cal = E_CALENDAR (widget); +#if 0 g_print ("In e_calendar_drag_leave\n"); +#endif } |