summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2015-01-18 00:17:57 +0100
committerBenjamin Otte <otte@redhat.com>2015-01-20 06:30:19 +0100
commitebb64c2288aff6bd70d349771cc564d36b2f27b0 (patch)
treeff01d3e04372c229802f1a8a863ec185f4900dbf
parent7ba7dff69e5d6902845f91119c90658420a54c0a (diff)
downloadgtk+-ebb64c2288aff6bd70d349771cc564d36b2f27b0.tar.gz
inspector: Remove unused hash table
-rw-r--r--gtk/inspector/style-prop-list.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/gtk/inspector/style-prop-list.c b/gtk/inspector/style-prop-list.c
index ab29f9b4c3..45fac8db64 100644
--- a/gtk/inspector/style-prop-list.c
+++ b/gtk/inspector/style-prop-list.c
@@ -47,7 +47,6 @@ enum
struct _GtkInspectorStylePropListPrivate
{
- GHashTable *css_files;
GtkListStore *model;
GtkWidget *widget;
GtkWidget *tree;
@@ -203,8 +202,6 @@ gtk_inspector_style_prop_list_init (GtkInspectorStylePropList *pl)
GTK_SORT_ASCENDING);
gtk_tree_view_set_search_entry (GTK_TREE_VIEW (pl->priv->tree),
GTK_ENTRY (pl->priv->search_entry));
- pl->priv->css_files = g_hash_table_new_full (g_file_hash, (GEqualFunc) g_file_equal,
- g_object_unref, (GDestroyNotify) g_strfreev);
pl->priv->prop_iters = g_hash_table_new_full (g_str_hash,
g_str_equal,
@@ -247,7 +244,6 @@ finalize (GObject *object)
{
GtkInspectorStylePropList *pl = GTK_INSPECTOR_STYLE_PROP_LIST (object);
- g_hash_table_unref (pl->priv->css_files);
g_hash_table_unref (pl->priv->prop_iters);
G_OBJECT_CLASS (gtk_inspector_style_prop_list_parent_class)->finalize (object);