summaryrefslogtreecommitdiff
path: root/gtk/gtkcontainer.h
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-10-11 04:21:36 +0200
committerJavier Jardón <jjardon@gnome.org>2010-10-11 05:13:45 +0200
commitc2ab54a31f9be01c1328babf794fd5bfa5ab098d (patch)
tree102e9ffeeed216ed520468f6b2e195eae90321f3 /gtk/gtkcontainer.h
parentcabc386252f9738c0b5b9b2b98cc05da9390b141 (diff)
downloadgtk+-c2ab54a31f9be01c1328babf794fd5bfa5ab098d.tar.gz
docs: Move documentation do inline comments: GtkContainer
Diffstat (limited to 'gtk/gtkcontainer.h')
-rw-r--r--gtk/gtkcontainer.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/gtk/gtkcontainer.h b/gtk/gtkcontainer.h
index 87429114e1..607baf6f7d 100644
--- a/gtk/gtkcontainer.h
+++ b/gtk/gtkcontainer.h
@@ -188,6 +188,16 @@ void gtk_container_child_get_property (GtkContainer *container,
const gchar *property_name,
GValue *value);
+/**
+ * GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID:
+ * @object: the #GObject on which set_child_property() or get_child_property()
+ * was called
+ * @property_id: the numeric id of the property
+ * @pspec: the #GParamSpec of the property
+ *
+ * This macro should be used to emit a standard warning about unexpected
+ * properties in set_child_property() and get_child_property() implementations.
+ */
#define GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID(object, property_id, pspec) \
G_OBJECT_WARN_INVALID_PSPEC ((object), "child property id", (property_id), (pspec))