diff options
author | JP Rosevear <jpr@ximian.com> | 2002-08-02 20:30:07 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2002-08-02 20:30:07 +0800 |
commit | 2834a021870668d98d8184f05b58457d073fb3b6 (patch) | |
tree | b06db1354492cdeb276cbacdae2345866c25d4b4 /calendar | |
parent | ce4d96263c44a56d3ab00c4ca2ca70a680841a73 (diff) | |
download | gsoc2013-evolution-2834a021870668d98d8184f05b58457d073fb3b6.tar gsoc2013-evolution-2834a021870668d98d8184f05b58457d073fb3b6.tar.gz gsoc2013-evolution-2834a021870668d98d8184f05b58457d073fb3b6.tar.bz2 gsoc2013-evolution-2834a021870668d98d8184f05b58457d073fb3b6.tar.lz gsoc2013-evolution-2834a021870668d98d8184f05b58457d073fb3b6.tar.xz gsoc2013-evolution-2834a021870668d98d8184f05b58457d073fb3b6.tar.zst gsoc2013-evolution-2834a021870668d98d8184f05b58457d073fb3b6.zip |
don't warn if we can't use the small font, just set use_small_font to
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
svn path=/trunk/; revision=17689
Diffstat (limited to 'calendar')
-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"); |