Remove unused struct field

Signed-off-by: Federico Mena Quintero <federico@gnome.org>
This commit is contained in:
Federico Mena Quintero 2011-06-28 18:53:48 -05:00
parent d64c88d4d1
commit 5564df4ac9

View File

@ -9052,7 +9052,6 @@ typedef struct
GtkFileChooserDefault *impl;
GList *items;
gint n_items;
gint n_loaded_items;
guint needs_sorting : 1;
} RecentLoadData;
@ -9154,7 +9153,6 @@ recent_idle_load (gpointer data)
}
}
load_data->n_loaded_items = 0;
load_data->needs_sorting = FALSE;
return TRUE;
@ -9195,7 +9193,6 @@ recent_start_loading (GtkFileChooserDefault *impl)
load_data->impl = impl;
load_data->items = NULL;
load_data->n_items = 0;
load_data->n_loaded_items = 0;
load_data->needs_sorting = TRUE;
/* begin lazy loading the recent files into the model */