Move GtkFileChooserDialogPrivate into gtkfilechooserdialog.c

We'll take private structures out of gtkfilechooserprivate.h and move
them to the appropriate place.
This commit is contained in:
Federico Mena Quintero 2013-04-11 20:46:30 -05:00
parent 456c318f6e
commit 70fce923bc
2 changed files with 8 additions and 11 deletions

View File

@ -193,6 +193,14 @@
*/
struct _GtkFileChooserDialogPrivate
{
GtkWidget *widget;
/* for use with GtkFileChooserEmbed */
gboolean response_requested;
};
#define GTK_FILE_CHOOSER_DIALOG_GET_PRIVATE(o) (GTK_FILE_CHOOSER_DIALOG (o)->priv)
static void gtk_file_chooser_dialog_set_property (GObject *object,

View File

@ -102,17 +102,6 @@ gboolean _gtk_file_chooser_remove_shortcut_folder (GtkFileChooser *cho
GError **error);
GSList * _gtk_file_chooser_list_shortcut_folder_files (GtkFileChooser *chooser);
/* GtkFileChooserDialog private */
struct _GtkFileChooserDialogPrivate
{
GtkWidget *widget;
/* for use with GtkFileChooserEmbed */
gboolean response_requested;
};
/* GtkFileChooserWidget private */
struct _GtkFileChooserWidgetPrivate