recent manager: Drop an unused field

This commit is contained in:
Matthias Clasen 2017-11-30 07:03:20 -05:00
parent a9f12892ea
commit bd1a9c1afe

View File

@ -102,7 +102,6 @@
#include "gtkrecentmanager.h"
#include "gtkintl.h"
#include "gtksettings.h"
#include "gtkicontheme.h"
#include "gtktypebuiltins.h"
#include "gtkprivate.h"
#include "gtkmarshalers.h"
@ -160,8 +159,6 @@ struct _GtkRecentInfo
gboolean is_private;
GdkPixbuf *icon;
gint ref_count;
};
@ -1548,9 +1545,6 @@ gtk_recent_info_free (GtkRecentInfo *recent_info)
g_slist_free_full (recent_info->groups, g_free);
if (recent_info->icon)
g_object_unref (recent_info->icon);
g_free (recent_info);
}