diff options
author | Matthias Clasen <mclasen@redhat.com> | 2012-02-27 07:10:59 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2012-02-27 07:11:43 -0500 |
commit | 2c25bd85b8690eb0ca6b023122dc130d57c0ca8d (patch) | |
tree | a0a1e65a7230ddfd9a2345a1e8c5b8928a7b090f /gtk/deprecated/gtkfontsel.h | |
parent | 98f3468172004901df6e8bf507e4ec1b0fdac42d (diff) | |
download | gtk+-2c25bd85b8690eb0ca6b023122dc130d57c0ca8d.tar.gz |
gtk: Use versioned deprecations
This patch changes all uses of GDK_DEPRECATED(_FOR) in gtk headers
by the versioned variants, GDK_DEPRECATED_IN_3_x(_FOR). At the same
time, we add GDK_AVAILABLE_IN_3_x annotations for all API additions
in 3.2 and 3.4.
Diffstat (limited to 'gtk/deprecated/gtkfontsel.h')
-rw-r--r-- | gtk/deprecated/gtkfontsel.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/gtk/deprecated/gtkfontsel.h b/gtk/deprecated/gtkfontsel.h index 628f883363..0f7dc5d044 100644 --- a/gtk/deprecated/gtkfontsel.h +++ b/gtk/deprecated/gtkfontsel.h @@ -106,58 +106,58 @@ struct _GtkFontSelectionDialogClass }; GType gtk_font_selection_get_type (void) G_GNUC_CONST; -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) GtkWidget * gtk_font_selection_new (void); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) GtkWidget * gtk_font_selection_get_family_list (GtkFontSelection *fontsel); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) GtkWidget * gtk_font_selection_get_face_list (GtkFontSelection *fontsel); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) GtkWidget * gtk_font_selection_get_size_entry (GtkFontSelection *fontsel); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) GtkWidget * gtk_font_selection_get_size_list (GtkFontSelection *fontsel); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) GtkWidget * gtk_font_selection_get_preview_entry (GtkFontSelection *fontsel); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) PangoFontFamily * gtk_font_selection_get_family (GtkFontSelection *fontsel); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) PangoFontFace * gtk_font_selection_get_face (GtkFontSelection *fontsel); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) gint gtk_font_selection_get_size (GtkFontSelection *fontsel); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) gchar* gtk_font_selection_get_font_name (GtkFontSelection *fontsel); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) gboolean gtk_font_selection_set_font_name (GtkFontSelection *fontsel, const gchar *fontname); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) const gchar* gtk_font_selection_get_preview_text (GtkFontSelection *fontsel); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) void gtk_font_selection_set_preview_text (GtkFontSelection *fontsel, const gchar *text); GType gtk_font_selection_dialog_get_type (void) G_GNUC_CONST; -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) GtkWidget *gtk_font_selection_dialog_new (const gchar *title); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) GtkWidget *gtk_font_selection_dialog_get_ok_button (GtkFontSelectionDialog *fsd); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) GtkWidget *gtk_font_selection_dialog_get_cancel_button (GtkFontSelectionDialog *fsd); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) GtkWidget *gtk_font_selection_dialog_get_font_selection (GtkFontSelectionDialog *fsd); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) gchar* gtk_font_selection_dialog_get_font_name (GtkFontSelectionDialog *fsd); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) gboolean gtk_font_selection_dialog_set_font_name (GtkFontSelectionDialog *fsd, const gchar *fontname); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) const gchar* gtk_font_selection_dialog_get_preview_text (GtkFontSelectionDialog *fsd); -GDK_DEPRECATED_FOR(GtkFontChooser) +GDK_DEPRECATED_IN_3_2_FOR(GtkFontChooser) void gtk_font_selection_dialog_set_preview_text (GtkFontSelectionDialog *fsd, const gchar *text); |