aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2010-10-08 09:58:06 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-10-30 01:49:57 +0800
commit9b2576119477a2a4bcfed3d1c5f2c038403941be (patch)
treea0df64f3e7601ae639c64f720a639305cea1aa21 /calendar
parent76ca1d5b2e99424644ad66037bceb52d9b8ac534 (diff)
downloadgsoc2013-evolution-9b2576119477a2a4bcfed3d1c5f2c038403941be.tar
gsoc2013-evolution-9b2576119477a2a4bcfed3d1c5f2c038403941be.tar.gz
gsoc2013-evolution-9b2576119477a2a4bcfed3d1c5f2c038403941be.tar.bz2
gsoc2013-evolution-9b2576119477a2a4bcfed3d1c5f2c038403941be.tar.lz
gsoc2013-evolution-9b2576119477a2a4bcfed3d1c5f2c038403941be.tar.xz
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.c2
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,