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/gtkcsssection.h | |
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/gtkcsssection.h')
-rw-r--r-- | gtk/gtkcsssection.h | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/gtk/gtkcsssection.h b/gtk/gtkcsssection.h index be85862579..8553633fcd 100644 --- a/gtk/gtkcsssection.h +++ b/gtk/gtkcsssection.h @@ -50,8 +50,6 @@ G_BEGIN_DECLS * * More types might be added in the future as the parser incorporates * more features. - * - * Since: 3.2 */ typedef enum { @@ -72,32 +70,30 @@ typedef enum * Defines a part of a CSS document. Because sections are nested into * one another, you can use gtk_css_section_get_parent() to get the * containing region. - * - * Since: 3.2 */ typedef struct _GtkCssSection GtkCssSection; -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL GType gtk_css_section_get_type (void) G_GNUC_CONST; -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL GtkCssSection * gtk_css_section_ref (GtkCssSection *section); -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL void gtk_css_section_unref (GtkCssSection *section); -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL GtkCssSectionType gtk_css_section_get_section_type (const GtkCssSection *section); -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL GtkCssSection * gtk_css_section_get_parent (const GtkCssSection *section); -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL GFile * gtk_css_section_get_file (const GtkCssSection *section); -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL guint gtk_css_section_get_start_line (const GtkCssSection *section); -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL guint gtk_css_section_get_start_position (const GtkCssSection *section); -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL guint gtk_css_section_get_end_line (const GtkCssSection *section); -GDK_AVAILABLE_IN_3_2 +GDK_AVAILABLE_IN_ALL guint gtk_css_section_get_end_position (const GtkCssSection *section); G_END_DECLS |