diff options
author | Benjamin Otte <otte@redhat.com> | 2010-10-08 09:58:06 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-10-30 01:49:57 +0800 |
commit | 9b2576119477a2a4bcfed3d1c5f2c038403941be (patch) | |
tree | a0df64f3e7601ae639c64f720a639305cea1aa21 /calendar | |
parent | 76ca1d5b2e99424644ad66037bceb52d9b8ac534 (diff) | |
download | gsoc2013-evolution-9b2576119477a2a4bcfed3d1c5f2c038403941be.tar.gz gsoc2013-evolution-9b2576119477a2a4bcfed3d1c5f2c038403941be.tar.zst gsoc2013-evolution-9b2576119477a2a4bcfed3d1c5f2c038403941be.zip |
Cast GtkAdjustment constructor calls to GtkAdjustment
Otherwise gcc will complain about wrong type when comiling against GTK2.
This patch can be reverted when compiling against GTK3.
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/gui/e-week-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index bb6784d053..dd72bfe530 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -834,7 +834,7 @@ e_week_view_init (EWeekView *week_view) /* * Scrollbar. */ - adjustment = gtk_adjustment_new (0, -52, 52, 1, 1, 1); + adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (0, -52, 52, 1, 1, 1)); week_view->vscrollbar = gtk_vscrollbar_new (adjustment); gtk_table_attach (GTK_TABLE (week_view), week_view->vscrollbar, |