* @self: a `GtkListBase`
* @across: position in pixels in the direction cross to the list
* @along: position in pixels in the direction of the list
- * @pos: (out caller-allocates): set to the looked up position
+ * @pos: (out): set to the looked up position
* @area: (out caller-allocates) (optional): set to the area occupied
* by the returned position
*
GtkListBasePrivate *priv = gtk_list_base_get_instance_private (self);
GtkListTile *tile;
int dx, dy;
-
+
gtk_list_base_get_adjustment_values (self, OPPOSITE_ORIENTATION (priv->orientation), &dx, NULL, NULL);
gtk_list_base_get_adjustment_values (self, priv->orientation, &dy, NULL, NULL);
* gtk_section_model_get_section:
* @self: a `GtkSectionModel`
* @position: the position of the item to query
- * @out_start: (out caller-allocates): the position of the first
- * item in the section
- * @out_end: (out caller-allocates): the position of the first
- * item not part of the section anymore.
+ * @out_start: (out): the position of the first item in the section
+ * @out_end: (out): the position of the first item not part of the section
+ * anymore.
*
* Query the section that covers the given position. The number of
* items in the section can be computed by `out_end - out_start`.