diff --git a/gtk/tr-core.c b/gtk/tr-core.c index 350c0acda..306462542 100644 --- a/gtk/tr-core.c +++ b/gtk/tr-core.c @@ -503,7 +503,6 @@ tr_core_init( GTypeInstance * instance, gpointer g_class UNUSED ) GType types[] = { G_TYPE_STRING, /* name */ G_TYPE_STRING, /* collated name */ - G_TYPE_STRING, /* hash string */ TR_TORRENT_TYPE, /* TrTorrent object */ G_TYPE_POINTER, /* tr_torrent* */ G_TYPE_INT /* tr_stat()->status */ @@ -678,7 +677,6 @@ tr_core_add_torrent( TrCore * self, TrTorrent * gtor ) gtk_list_store_insert_with_values( store, &unused, 0, MC_NAME, inf->name, MC_NAME_COLLATED, collated, - MC_HASH, inf->hashString, MC_TORRENT, gtor, MC_TORRENT_RAW, tor, MC_STATUS, torStat->status, diff --git a/gtk/tr-core.h b/gtk/tr-core.h index d382859ac..fcd46f90c 100644 --- a/gtk/tr-core.h +++ b/gtk/tr-core.h @@ -181,7 +181,6 @@ enum { MC_NAME, MC_NAME_COLLATED, - MC_HASH, MC_TORRENT, MC_TORRENT_RAW, MC_STATUS,