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 b602220e2f
commit dfdb51e324

View File

@@ -9020,7 +9020,6 @@ typedef struct
GtkFileChooserDefault *impl;
GList *items;
gint n_items;
gint n_loaded_items;
guint needs_sorting : 1;
} RecentLoadData;
@@ -9122,7 +9121,6 @@ recent_idle_load (gpointer data)
}
}
load_data->n_loaded_items = 0;
load_data->needs_sorting = FALSE;
return TRUE;
@@ -9163,7 +9161,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 */