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/gtkshortcutlabel.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/gtkshortcutlabel.c')
-rw-r--r-- | gtk/gtkshortcutlabel.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gtk/gtkshortcutlabel.c b/gtk/gtkshortcutlabel.c index b7003dd94d..6f0b2e39e8 100644 --- a/gtk/gtkshortcutlabel.c +++ b/gtk/gtkshortcutlabel.c @@ -469,8 +469,6 @@ gtk_shortcut_label_class_init (GtkShortcutLabelClass *klass) * * The accelerator that @self displays. See #GtkShortcutsShortcut:accelerator * for the accepted syntax. - * - * Since: 3.22 */ properties[PROP_ACCELERATOR] = g_param_spec_string ("accelerator", P_("Accelerator"), P_("Accelerator"), @@ -481,8 +479,6 @@ gtk_shortcut_label_class_init (GtkShortcutLabelClass *klass) * GtkShortcutLabel:disabled-text: * * The text that is displayed when no accelerator is set. - * - * Since: 3.22 */ properties[PROP_DISABLED_TEXT] = g_param_spec_string ("disabled-text", P_("Disabled text"), P_("Disabled text"), @@ -508,8 +504,6 @@ gtk_shortcut_label_init (GtkShortcutLabel *self) * Creates a new #GtkShortcutLabel with @accelerator set. * * Returns: (transfer full): a newly-allocated #GtkShortcutLabel - * - * Since: 3.22 */ GtkWidget * gtk_shortcut_label_new (const gchar *accelerator) @@ -526,8 +520,6 @@ gtk_shortcut_label_new (const gchar *accelerator) * Retrieves the current accelerator of @self. * * Returns: (transfer none)(nullable): the current accelerator. - * - * Since: 3.22 */ const gchar * gtk_shortcut_label_get_accelerator (GtkShortcutLabel *self) @@ -543,8 +535,6 @@ gtk_shortcut_label_get_accelerator (GtkShortcutLabel *self) * @accelerator: the new accelerator * * Sets the accelerator to be displayed by @self. - * - * Since: 3.22 */ void gtk_shortcut_label_set_accelerator (GtkShortcutLabel *self, @@ -569,8 +559,6 @@ gtk_shortcut_label_set_accelerator (GtkShortcutLabel *self, * * Returns: (transfer none)(nullable): the current text displayed when no * accelerator is set. - * - * Since: 3.22 */ const gchar * gtk_shortcut_label_get_disabled_text (GtkShortcutLabel *self) @@ -586,8 +574,6 @@ gtk_shortcut_label_get_disabled_text (GtkShortcutLabel *self) * @disabled_text: the text to be displayed when no accelerator is set * * Sets the text to be displayed by @self when no accelerator is set. - * - * Since: 3.22 */ void gtk_shortcut_label_set_disabled_text (GtkShortcutLabel *self, |