Remove deprecated functions from GtkAboutDialog

This commit is contained in:
Christian Dywan 2009-10-07 17:36:18 +02:00 committed by Javier Jardón
parent 0a05a199c4
commit 5a33eb8d67
2 changed files with 0 additions and 44 deletions

View File

@ -864,25 +864,6 @@ gtk_about_dialog_show (GtkWidget *widget)
GTK_WIDGET_CLASS (gtk_about_dialog_parent_class)->show (widget);
}
/**
* gtk_about_dialog_get_name:
* @about: a #GtkAboutDialog
*
* Returns the program name displayed in the about dialog.
*
* Return value: The program name. The string is owned by the about
* dialog and must not be modified.
*
* Since: 2.6
*
* Deprecated: 2.12: Use gtk_about_dialog_get_program_name() instead.
*/
G_CONST_RETURN gchar *
gtk_about_dialog_get_name (GtkAboutDialog *about)
{
return gtk_about_dialog_get_program_name (about);
}
/**
* gtk_about_dialog_get_program_name:
* @about: a #GtkAboutDialog
@ -930,25 +911,6 @@ update_name_version (GtkAboutDialog *about)
g_free (name_string);
}
/**
* gtk_about_dialog_set_name:
* @about: a #GtkAboutDialog
* @name: (allow-none): the program name
*
* Sets the name to display in the about dialog.
* If this is not set, it defaults to g_get_application_name().
*
* Since: 2.6
*
* Deprecated: 2.12: Use gtk_about_dialog_set_program_name() instead.
*/
void
gtk_about_dialog_set_name (GtkAboutDialog *about,
const gchar *name)
{
gtk_about_dialog_set_program_name (about, name);
}
/**
* gtk_about_dialog_set_program_name:
* @about: a #GtkAboutDialog

View File

@ -73,12 +73,6 @@ GtkWidget *gtk_about_dialog_new (void);
void gtk_show_about_dialog (GtkWindow *parent,
const gchar *first_property_name,
...) G_GNUC_NULL_TERMINATED;
#ifndef GTK_DISABLE_DEPRECATED
G_CONST_RETURN gchar *gtk_about_dialog_get_name (GtkAboutDialog *about);
void gtk_about_dialog_set_name (GtkAboutDialog *about,
const gchar *name);
#endif /* GTK_DISABLE_DEPRECATED */
G_CONST_RETURN gchar *gtk_about_dialog_get_program_name (GtkAboutDialog *about);
void gtk_about_dialog_set_program_name (GtkAboutDialog *about,
const gchar *name);