diff options
Diffstat (limited to 'gtk/gtkcontainer.c')
-rw-r--r-- | gtk/gtkcontainer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c index c78c160a6b..52f1c4a30b 100644 --- a/gtk/gtkcontainer.c +++ b/gtk/gtkcontainer.c @@ -629,7 +629,7 @@ gtk_container_set_arg (GtkObject *object, switch (arg_id) { case ARG_BORDER_WIDTH: - gtk_container_border_width (container, GTK_VALUE_ULONG (*arg)); + gtk_container_set_border_width (container, GTK_VALUE_ULONG (*arg)); break; case ARG_RESIZE_MODE: gtk_container_set_resize_mode (container, GTK_VALUE_ENUM (*arg)); @@ -666,8 +666,8 @@ gtk_container_get_arg (GtkObject *object, } void -gtk_container_border_width (GtkContainer *container, - guint border_width) +gtk_container_set_border_width (GtkContainer *container, + guint border_width) { g_return_if_fail (container != NULL); g_return_if_fail (GTK_IS_CONTAINER (container)); |