Remove an unused struct member

AsyncFuncData.folder was entirely unused. Drop it.
This commit is contained in:
Matthias Clasen
2013-12-01 16:56:54 -05:00
parent e4c83bbfdb
commit 3d0abd5cb0

View File

@@ -113,7 +113,6 @@ struct AsyncFuncData
{
GtkFileSystem *file_system;
GFile *file;
GtkFolder *folder;
GCancellable *cancellable;
gchar *attributes;
@@ -828,9 +827,6 @@ free_async_data (AsyncFuncData *async_data)
g_object_unref (async_data->file);
g_object_unref (async_data->cancellable);
if (async_data->folder)
g_object_unref (async_data->folder);
g_free (async_data->attributes);
g_free (async_data);
}