diff options
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/e-week-view.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 30a17649ed..5abe501ef5 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,10 @@ 2002-08-02 JP Rosevear <jpr@ximian.com> + * gui/e-week-view.c (e_week_view_init): don't warn if we can't use + the small font, just set use_small_font to FALSE + +2002-08-02 JP Rosevear <jpr@ximian.com> + * gui/e-itip-control.c (adjust_item): new util function to add information to an itip message that might not already be there for display purposes (summary, location, etc) diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index 69533969d4..f3f1badbae 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -370,7 +370,7 @@ e_week_view_init (EWeekView *week_view) if (!week_view->small_font) week_view->small_font = gdk_font_load (E_WEEK_VIEW_SMALL_FONT_FALLBACK); if (!week_view->small_font) - g_warning ("Couldn't load font"); + week_view->use_small_font = FALSE; /* String to use in 12-hour time format for times in the morning. */ week_view->am_string = _("am"); |