Remove unused KatzeNet instance from Bookmarks panel

This commit is contained in:
Christian Dywan 2010-02-08 00:15:29 +01:00
parent eb5b244647
commit cee10ca6d8

View file

@ -46,7 +46,6 @@ struct _MidoriBookmarks
GtkWidget* treeview; GtkWidget* treeview;
MidoriApp* app; MidoriApp* app;
KatzeArray* array; KatzeArray* array;
KatzeNet* net;
}; };
struct _MidoriBookmarksClass struct _MidoriBookmarksClass
@ -906,8 +905,6 @@ midori_bookmarks_init (MidoriBookmarks* bookmarks)
GtkCellRenderer* renderer_pixbuf; GtkCellRenderer* renderer_pixbuf;
GtkCellRenderer* renderer_text; GtkCellRenderer* renderer_text;
bookmarks->net = katze_net_new ();
/* Create the treeview */ /* Create the treeview */
model = midori_bookmark_store_new (1, KATZE_TYPE_ITEM); model = midori_bookmark_store_new (1, KATZE_TYPE_ITEM);
treeview = gtk_tree_view_new_with_model (GTK_TREE_MODEL (model)); treeview = gtk_tree_view_new_with_model (GTK_TREE_MODEL (model));
@ -952,7 +949,6 @@ midori_bookmarks_finalize (GObject* object)
midori_bookmarks_disconnect_folder (bookmarks, bookmarks->array); midori_bookmarks_disconnect_folder (bookmarks, bookmarks->array);
if (bookmarks->app) if (bookmarks->app)
g_object_unref (bookmarks->app); g_object_unref (bookmarks->app);
g_object_unref (bookmarks->net);
} }
/** /**