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/gtkprogressbar.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/gtkprogressbar.c')
-rw-r--r-- | gtk/gtkprogressbar.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gtk/gtkprogressbar.c b/gtk/gtkprogressbar.c index 5383cdbc31..73aab497c4 100644 --- a/gtk/gtkprogressbar.c +++ b/gtk/gtkprogressbar.c @@ -229,8 +229,6 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) * showing text (even if the actual text is blank), set * #GtkProgressBar:show-text to %TRUE and #GtkProgressBar:text * to the empty string (not %NULL). - * - * Since: 3.0 */ progress_props[PROP_SHOW_TEXT] = g_param_spec_boolean ("show-text", @@ -250,8 +248,6 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) * %PANGO_ELLIPSIZE_NONE has the side-effect that the progress bar requests * only enough space to display the ellipsis ("..."). Another means to set a * progress bar's width is gtk_widget_set_size_request(). - * - * Since: 2.6 */ progress_props[PROP_ELLIPSIZE] = g_param_spec_enum ("ellipsize", @@ -1015,8 +1011,6 @@ gtk_progress_bar_set_text (GtkProgressBar *pbar, * To make a progress bar that is styled and sized suitably for containing * text (even if the actual text is blank), set #GtkProgressBar:show-text to * %TRUE and #GtkProgressBar:text to the empty string (not %NULL). - * - * Since: 3.0 */ void gtk_progress_bar_set_show_text (GtkProgressBar *pbar, @@ -1070,8 +1064,6 @@ gtk_progress_bar_set_show_text (GtkProgressBar *pbar, * See gtk_progress_bar_set_show_text(). * * Returns: %TRUE if text is shown in the progress bar - * - * Since: 3.0 */ gboolean gtk_progress_bar_get_show_text (GtkProgressBar *pbar) @@ -1237,8 +1229,6 @@ gtk_progress_bar_get_inverted (GtkProgressBar *pbar) * * Sets the mode used to ellipsize (add an ellipsis: "...") the * text if there is not enough space to render the entire string. - * - * Since: 2.6 */ void gtk_progress_bar_set_ellipsize (GtkProgressBar *pbar, @@ -1272,8 +1262,6 @@ gtk_progress_bar_set_ellipsize (GtkProgressBar *pbar, * See gtk_progress_bar_set_ellipsize(). * * Returns: #PangoEllipsizeMode - * - * Since: 2.6 */ PangoEllipsizeMode gtk_progress_bar_get_ellipsize (GtkProgressBar *pbar) |