forked from AuroraMiddleware/gtk
avoid our own deprecated public API and use
2008-08-04 Michael Natterer <mitch@imendio.com> * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_font): avoid our own deprecated public API and use gtk_font_selection_get_font_internal() instead of gtk_font_selection_get_font(). (gtk_font_selection_get_font) (gtk_font_selection_dialog_get_font): Add missing "Deprecated: 2.0" to the api doc comments. svn path=/trunk/; revision=20962
This commit is contained in:
parent
154f0f56de
commit
5a3691352d
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
||||
2008-08-04 Michael Natterer <mitch@imendio.com>
|
||||
|
||||
* gtk/gtkfontsel.c (gtk_font_selection_dialog_get_font):
|
||||
avoid our own deprecated public API and use
|
||||
gtk_font_selection_get_font_internal() instead of
|
||||
gtk_font_selection_get_font().
|
||||
|
||||
(gtk_font_selection_get_font)
|
||||
(gtk_font_selection_dialog_get_font): Add missing
|
||||
"Deprecated: 2.0" to the api doc comments.
|
||||
|
||||
2008-08-04 Michael Natterer <mitch@imendio.com>
|
||||
|
||||
* gdk/tests/Makefile.am: add the generated PNGs to CLEANFILES.
|
||||
|
@ -1314,14 +1314,16 @@ gtk_font_selection_get_size (GtkFontSelection *fontsel)
|
||||
/**
|
||||
* gtk_font_selection_get_font:
|
||||
* @fontsel: a #GtkFontSelection
|
||||
*
|
||||
* Return value: A #GdkFont.
|
||||
*
|
||||
* Return value: A #GdkFont.
|
||||
*
|
||||
* Deprecated: 2.0: Use gtk_font_selection_get_font_name() instead.
|
||||
**/
|
||||
GdkFont *
|
||||
gtk_font_selection_get_font (GtkFontSelection *fontsel)
|
||||
{
|
||||
g_return_val_if_fail (GTK_IS_FONT_SELECTION (fontsel), NULL);
|
||||
|
||||
|
||||
return gtk_font_selection_get_font_internal (fontsel);
|
||||
}
|
||||
|
||||
@ -1709,13 +1711,15 @@ gtk_font_selection_dialog_get_font_name (GtkFontSelectionDialog *fsd)
|
||||
*
|
||||
* Return value: the #GdkFont from the #GtkFontSelection for the
|
||||
* currently selected font in the dialog.
|
||||
*
|
||||
* Deprecated: 2.0: Use gtk_font_selection_dialog_get_font_name() instead.
|
||||
*/
|
||||
GdkFont*
|
||||
gtk_font_selection_dialog_get_font (GtkFontSelectionDialog *fsd)
|
||||
{
|
||||
g_return_val_if_fail (GTK_IS_FONT_SELECTION_DIALOG (fsd), NULL);
|
||||
|
||||
return gtk_font_selection_get_font (GTK_FONT_SELECTION (fsd->fontsel));
|
||||
return gtk_font_selection_get_font_internal (GTK_FONT_SELECTION (fsd->fontsel));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user