]> spindle.queued.net Git - midori/commitdiff
Remove unused KatzeNet instance from Bookmarks panel
authorChristian Dywan <christian@twotoasts.de>
Sun, 7 Feb 2010 23:15:29 +0000 (00:15 +0100)
committerChristian Dywan <christian@twotoasts.de>
Wed, 10 Feb 2010 18:52:11 +0000 (19:52 +0100)
panels/midori-bookmarks.c

index 01e911238aecf8bccc4dfe09d9d1d50621e978ff..87cc2421fc2f383dc549a21ddb55cf41511e69dc 100644 (file)
@@ -46,7 +46,6 @@ struct _MidoriBookmarks
     GtkWidget* treeview;
     MidoriApp* app;
     KatzeArray* array;
-    KatzeNet* net;
 };
 
 struct _MidoriBookmarksClass
@@ -906,8 +905,6 @@ midori_bookmarks_init (MidoriBookmarks* bookmarks)
     GtkCellRenderer* renderer_pixbuf;
     GtkCellRenderer* renderer_text;
 
-    bookmarks->net = katze_net_new ();
-
     /* Create the treeview */
     model = midori_bookmark_store_new (1, KATZE_TYPE_ITEM);
     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);
     if (bookmarks->app)
         g_object_unref (bookmarks->app);
-    g_object_unref (bookmarks->net);
 }
 
 /**