summaryrefslogtreecommitdiff
path: root/gtk/gtkadjustment.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-07-13 23:04:08 -0400
committerMatthias Clasen <mclasen@redhat.com>2014-07-13 23:04:39 -0400
commitaa5afb38e83937aff9d9a14800c633960dde2d67 (patch)
tree6d79cbaf642c390025c4397d365871ed734333c8 /gtk/gtkadjustment.c
parent332fa9b8483a783709e314f1445456dbd546d29e (diff)
downloadgtk+-aa5afb38e83937aff9d9a14800c633960dde2d67.tar.gz
Fix a typo
A getter shouldn't return void.
Diffstat (limited to 'gtk/gtkadjustment.c')
-rw-r--r--gtk/gtkadjustment.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkadjustment.c b/gtk/gtkadjustment.c
index 0bcb2b7c76..74541a8843 100644
--- a/gtk/gtkadjustment.c
+++ b/gtk/gtkadjustment.c
@@ -1012,7 +1012,7 @@ gtk_adjustment_enable_animation (GtkAdjustment *adjustment,
priv->duration = duration;
}
-void
+guint
gtk_adjustment_get_animation_duration (GtkAdjustment *adjustment)
{
return adjustment->priv->duration;