diff options
author | Damon Chaplin <damon@ximian.com> | 2001-07-03 17:12:12 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2001-07-03 17:12:12 +0800 |
commit | a753b72a982b384b91a78ef91aa6088ca11c9824 (patch) | |
tree | 684fe7ee29fceda053e5f9801c5b8692ff256a60 /calendar/gui/e-day-view-top-item.c | |
parent | 5181884e249cc4c808114e6b3fd8b958532084f0 (diff) | |
download | gsoc2013-evolution-a753b72a982b384b91a78ef91aa6088ca11c9824.tar.gz gsoc2013-evolution-a753b72a982b384b91a78ef91aa6088ca11c9824.tar.zst gsoc2013-evolution-a753b72a982b384b91a78ef91aa6088ca11c9824.zip |
fix warning, and added some debug messages.
2001-07-03 Damon Chaplin <damon@ximian.com>
* gui/e-day-view.c (query_obj_updated_cb): fix warning, and added
some debug messages.
* gui/dialogs/comp-editor-util.c (write_label_piece):
* gui/e-day-view-top-item.c (e_day_view_top_item_draw): call mktime()
to set the weekday, though this is a temporary fix.
svn path=/trunk/; revision=10737
Diffstat (limited to 'calendar/gui/e-day-view-top-item.c')
-rw-r--r-- | calendar/gui/e-day-view-top-item.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/calendar/gui/e-day-view-top-item.c b/calendar/gui/e-day-view-top-item.c index 62e58f7ec5..1417dfee1e 100644 --- a/calendar/gui/e-day-view-top-item.c +++ b/calendar/gui/e-day-view-top-item.c @@ -274,6 +274,11 @@ e_day_view_top_item_draw (GnomeCanvasItem *canvas_item, day_start.tm_mday = day_start_tt.day; day_start.tm_isdst = -1; + /* Call mktime() to set the weekday. FIXME: Don't do this. + mktime() could in theory adjust the time if it thought it + was invalid. */ + mktime (&day_start); + if (day_view->date_format == E_DAY_VIEW_DATE_FULL) /* strftime format %A = full weekday name, %d = day of month, %B = full month name. Don't use any other specifiers. */ |