summaryrefslogtreecommitdiff
path: root/gtk/gtkcontainer.h
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>2001-06-21 00:42:46 +0000
committerTim Janik <timj@src.gnome.org>2001-06-21 00:42:46 +0000
commitf1e23c401330615b16d9b3820c16e3792572b325 (patch)
tree599ff756dbb3d020f8ea2124f9514f1e05131244 /gtk/gtkcontainer.h
parent10f3b349117819f35678b1de4195cd7bb4d12846 (diff)
downloadgtk+-f1e23c401330615b16d9b3820c16e3792572b325.tar.gz
added gtk_container_child_set_property() and
Thu Jun 21 02:13:40 2001 Tim Janik <timj@gtk.org> * gtk/gtkcontainer.[hc]: added gtk_container_child_set_property() and gtk_container_child_get_property().
Diffstat (limited to 'gtk/gtkcontainer.h')
-rw-r--r--gtk/gtkcontainer.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/gtk/gtkcontainer.h b/gtk/gtkcontainer.h
index 566b7d638c..d8a9db2af5 100644
--- a/gtk/gtkcontainer.h
+++ b/gtk/gtkcontainer.h
@@ -177,7 +177,15 @@ void gtk_container_child_get_valist (GtkContainer *container,
GtkWidget *child,
const gchar *first_property_name,
va_list var_args);
-
+void gtk_container_child_set_property (GtkContainer *container,
+ GtkWidget *child,
+ const gchar *property_name,
+ const GValue *value);
+void gtk_container_child_get_property (GtkContainer *container,
+ GtkWidget *child,
+ const gchar *property_name,
+ GValue *value);
+
#define GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID(object, property_id, pspec) \
G_OBJECT_WARN_INVALID_PSPEC ((object), "child property id", (property_id), (pspec))