summaryrefslogtreecommitdiff
path: root/gtk/gtkoverlay.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2018-02-05 20:13:20 +0100
committerMatthias Clasen <mclasen@redhat.com>2018-02-06 01:16:32 -0500
commit4c150d8eb518c35c484802e5cd7da572e4030f25 (patch)
tree8867f973fd6c9737b5d7f05d6945817f354a37e2 /gtk/gtkoverlay.c
parent2616e6857cc136c654b64dd16839ddf89f4b5c62 (diff)
downloadgtk+-4c150d8eb518c35c484802e5cd7da572e4030f25.tar.gz
The big versioning cleanup
Remove all the old 2.x and 3.x version annotations. GTK+ 4 is a new start, and from the perspective of a GTK+ 4 developer all these APIs have been around since the beginning.
Diffstat (limited to 'gtk/gtkoverlay.c')
-rw-r--r--gtk/gtkoverlay.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gtk/gtkoverlay.c b/gtk/gtkoverlay.c
index e7b969c1d7..f4c06b1a1d 100644
--- a/gtk/gtkoverlay.c
+++ b/gtk/gtkoverlay.c
@@ -401,8 +401,6 @@ gtk_overlay_remove (GtkContainer *container,
* A widget’s index in the @overlay children list determines which order
* the children are drawn if they overlap. The first child is drawn at
* the bottom. It also affects the default focus chain order.
- *
- * Since: 3.18
*/
void
gtk_overlay_reorder_overlay (GtkOverlay *overlay,
@@ -738,8 +736,6 @@ gtk_overlay_class_init (GtkOverlayClass *klass)
* GtkOverlay:pass-through:
*
* Pass through input, does not affect main child.
- *
- * Since: 3.18
*/
gtk_container_class_install_child_property (container_class, CHILD_PROP_PASS_THROUGH,
g_param_spec_boolean ("pass-through", P_("Pass Through"), P_("Pass through input, does not affect main child"),
@@ -750,8 +746,6 @@ gtk_overlay_class_init (GtkOverlayClass *klass)
* GtkOverlay:blur:
*
* Blur the content behind this child with a Gaussian blur of this radius.
- *
- * Since: 3.92
*/
gtk_container_class_install_child_property (container_class, CHILD_PROP_BLUR,
g_param_spec_double ("blur", P_("Blur Radius"), P_("Apply a blur to the content behind this child"),
@@ -761,8 +755,6 @@ gtk_overlay_class_init (GtkOverlayClass *klass)
* GtkOverlay:index:
*
* The index of the overlay in the parent, -1 for the main child.
- *
- * Since: 3.18
*/
gtk_container_class_install_child_property (container_class, CHILD_PROP_INDEX,
g_param_spec_int ("index",
@@ -846,8 +838,6 @@ gtk_overlay_buildable_init (GtkBuildableIface *iface)
* Creates a new #GtkOverlay.
*
* Returns: a new #GtkOverlay object.
- *
- * Since: 3.2
*/
GtkWidget *
gtk_overlay_new (void)
@@ -867,8 +857,6 @@ gtk_overlay_new (void)
*
* The position at which @widget is placed is determined
* from its #GtkWidget:halign and #GtkWidget:valign properties.
- *
- * Since: 3.2
*/
void
gtk_overlay_add_overlay (GtkOverlay *overlay,
@@ -899,8 +887,6 @@ gtk_overlay_add_overlay (GtkOverlay *overlay,
*
* Convenience function to set the value of the #GtkOverlay:pass-through
* child property for @widget.
- *
- * Since: 3.18
*/
void
gtk_overlay_set_overlay_pass_through (GtkOverlay *overlay,
@@ -924,8 +910,6 @@ gtk_overlay_set_overlay_pass_through (GtkOverlay *overlay,
* child property for @widget.
*
* Returns: whether the widget is a pass through child.
- *
- * Since: 3.18
*/
gboolean
gtk_overlay_get_overlay_pass_through (GtkOverlay *overlay,