summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2020-02-11 17:29:56 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2020-02-13 14:53:25 +0000
commit40852ea95207f72115f634a4d3f4c2f2ec9bd50e (patch)
tree001968b43e5732a7651d8e0ae79034d2a996e7c9
parent32a2a629dd4231ce800357221eb431c8a88f15b4 (diff)
downloadgtk+-40852ea95207f72115f634a4d3f4c2f2ec9bd50e.tar.gz
gi: Skip gtk_custom_layout_new()
The whole GtkCustomLayout class is mostly a C convenience API, and there's no reason why high level languages should use it.
-rw-r--r--gtk/gtkcustomlayout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkcustomlayout.c b/gtk/gtkcustomlayout.c
index 2616a21df4..13f14488ec 100644
--- a/gtk/gtkcustomlayout.c
+++ b/gtk/gtkcustomlayout.c
@@ -96,12 +96,12 @@ gtk_custom_layout_init (GtkCustomLayout *self)
}
/**
- * gtk_custom_layout_new:
+ * gtk_custom_layout_new: (constructor) (skip)
* @request_mode: (nullable): a function to retrieve
* the #GtkSizeRequestMode of the widget using the layout; the
* default request mode is %GTK_SIZE_REQUEST_CONSTANT_SIZE
- * @measure: a function to measure the widget using the layout manager
- * @allocate: a function to allocate the children of the widget using
+ * @measure: (not nullable): a function to measure the widget using the layout manager
+ * @allocate: (not nullable): a function to allocate the children of the widget using
* the layout manager
*
* Creates a new legacy layout manager.