Remove deprecated GtkFileChooser functions
This commit is contained in:
committed by
Javier Jardón
parent
07501cf02e
commit
d21bf0c1ec
@ -126,10 +126,6 @@ gtk_file_chooser_widget_set_property (GObject *object,
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case GTK_FILE_CHOOSER_PROP_FILE_SYSTEM_BACKEND:
|
||||
g_free (priv->file_system);
|
||||
priv->file_system = g_value_dup_string (value);
|
||||
break;
|
||||
default:
|
||||
g_object_set_property (G_OBJECT (priv->impl), pspec->name, value);
|
||||
break;
|
||||
@ -167,30 +163,5 @@ gtk_file_chooser_widget_new (GtkFileChooserAction action)
|
||||
NULL);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_file_chooser_widget_new_with_backend:
|
||||
* @action: Open or save mode for the widget
|
||||
* @backend: The name of the specific filesystem backend to use.
|
||||
*
|
||||
* Creates a new #GtkFileChooserWidget with a specified backend. This is
|
||||
* especially useful if you use gtk_file_chooser_set_local_only() to allow
|
||||
* non-local files. This is a file chooser widget that can be embedded in
|
||||
* custom windows and it is the same widget that is used by
|
||||
* #GtkFileChooserDialog.
|
||||
*
|
||||
* Return value: a new #GtkFileChooserWidget
|
||||
*
|
||||
* Since: 2.4
|
||||
* Deprecated: 2.14: Use gtk_file_chooser_widget_new() instead.
|
||||
**/
|
||||
GtkWidget *
|
||||
gtk_file_chooser_widget_new_with_backend (GtkFileChooserAction action,
|
||||
const gchar *backend)
|
||||
{
|
||||
return g_object_new (GTK_TYPE_FILE_CHOOSER_WIDGET,
|
||||
"action", action,
|
||||
NULL);
|
||||
}
|
||||
|
||||
#define __GTK_FILE_CHOOSER_WIDGET_C__
|
||||
#include "gtkaliasdef.c"
|
||||
|
||||
Reference in New Issue
Block a user