summaryrefslogtreecommitdiff
path: root/gtk/gtklayout.c
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-09-27 15:10:12 +0200
committerJavier Jardón <jjardon@gnome.org>2010-09-29 01:18:10 +0200
commitb072ea220cb938471c3ce5cb2fbd1e750112938b (patch)
treea7516a8f71d8d574796cef24b2667824bb98fe41 /gtk/gtklayout.c
parent42f480a537da89eac587a5a67fbf64ab248cd931 (diff)
downloadgtk+-b072ea220cb938471c3ce5cb2fbd1e750112938b.tar.gz
Remove unneded casts
As gtk_adjustment_new() returns a GtkAdjustment* now https://bugzilla.gnome.org/show_bug.cgi?id=630731
Diffstat (limited to 'gtk/gtklayout.c')
-rw-r--r--gtk/gtklayout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtklayout.c b/gtk/gtklayout.c
index 9a0943bdd0..b1a7e96abb 100644
--- a/gtk/gtklayout.c
+++ b/gtk/gtklayout.c
@@ -227,7 +227,7 @@ gtk_layout_get_vadjustment (GtkLayout *layout)
static GtkAdjustment *
new_default_adjustment (void)
{
- return GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0));
+ return gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
}
static void