diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-02-05 20:13:20 +0100 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-02-06 01:16:32 -0500 |
commit | 4c150d8eb518c35c484802e5cd7da572e4030f25 (patch) | |
tree | 8867f973fd6c9737b5d7f05d6945817f354a37e2 /gtk/gtkswitch.c | |
parent | 2616e6857cc136c654b64dd16839ddf89f4b5c62 (diff) | |
download | gtk+-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/gtkswitch.c')
-rw-r--r-- | gtk/gtkswitch.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gtk/gtkswitch.c b/gtk/gtkswitch.c index a4d7d38015..b25ffc9e01 100644 --- a/gtk/gtkswitch.c +++ b/gtk/gtkswitch.c @@ -533,8 +533,6 @@ gtk_switch_class_init (GtkSwitchClass *klass) * * The backend state that is controlled by the switch. * See #GtkSwitch::state-set for details. - * - * Since: 3.14 */ switch_props[PROP_STATE] = g_param_spec_boolean ("state", @@ -595,8 +593,6 @@ gtk_switch_class_init (GtkSwitchClass *klass) * position of the switch. * * Returns: %TRUE to stop the signal emission - * - * Since: 3.14 */ signals[STATE_SET] = g_signal_new (I_("state-set"), @@ -672,8 +668,6 @@ gtk_switch_init (GtkSwitch *self) * Creates a new #GtkSwitch widget. * * Returns: the newly created #GtkSwitch instance - * - * Since: 3.0 */ GtkWidget * gtk_switch_new (void) @@ -687,8 +681,6 @@ gtk_switch_new (void) * @is_active: %TRUE if @sw should be active, and %FALSE otherwise * * Changes the state of @sw to the desired one. - * - * Since: 3.0 */ void gtk_switch_set_active (GtkSwitch *sw, @@ -732,8 +724,6 @@ gtk_switch_set_active (GtkSwitch *sw, * Gets whether the #GtkSwitch is in its “on” or “off” state. * * Returns: %TRUE if the #GtkSwitch is active, and %FALSE otherwise - * - * Since: 3.0 */ gboolean gtk_switch_get_active (GtkSwitch *sw) @@ -757,8 +747,6 @@ gtk_switch_get_active (GtkSwitch *sw) * called from a #GtkSwitch::state-set signal handler. * * See #GtkSwitch::state-set for details. - * - * Since: 3.14 */ void gtk_switch_set_state (GtkSwitch *sw, @@ -795,8 +783,6 @@ gtk_switch_set_state (GtkSwitch *sw, * Gets the underlying state of the #GtkSwitch. * * Returns: the underlying state - * - * Since: 3.14 */ gboolean gtk_switch_get_state (GtkSwitch *sw) |