diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-08-11 11:46:37 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-08-11 11:46:37 +0800 |
commit | 3834c823592912bcaf881cb94e949612ce29baf2 (patch) | |
tree | 9948d475db00f3e03149810bdd1694ed87fccc2b /widgets/misc/e-calendar-item.c | |
parent | d5f9483b16cea64491eb5fe4eec815c61126849e (diff) | |
download | gsoc2013-evolution-3834c823592912bcaf881cb94e949612ce29baf2.tar.gz gsoc2013-evolution-3834c823592912bcaf881cb94e949612ce29baf2.tar.zst gsoc2013-evolution-3834c823592912bcaf881cb94e949612ce29baf2.zip |
Fixed some warnings.
2000-08-10 Christopher James Lahey <clahey@helixcode.com>
* e-calendar-item.c, e-calendar.c: Fixed some warnings.
svn path=/trunk/; revision=4723
Diffstat (limited to 'widgets/misc/e-calendar-item.c')
-rw-r--r-- | widgets/misc/e-calendar-item.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-calendar-item.c b/widgets/misc/e-calendar-item.c index 0386eabc84..e51754d786 100644 --- a/widgets/misc/e-calendar-item.c +++ b/widgets/misc/e-calendar-item.c @@ -464,7 +464,7 @@ e_calendar_item_set_arg (GtkObject *o, GtkArg *arg, guint arg_id) break; case ARG_SHOW_WEEK_NUMBERS: bvalue = GTK_VALUE_BOOL (*arg); - if (calitem->show_week_numbers != ivalue) { + if (calitem->show_week_numbers != bvalue) { calitem->show_week_numbers = bvalue; need_reshape = TRUE; } |