]> spindle.queued.net Git - midori/commitdiff
Resolve MidoriBookmarkStore warnings
authorChristian Dywan <christian@twotoasts.de>
Thu, 18 Jun 2009 21:54:30 +0000 (23:54 +0200)
committerChristian Dywan <christian@twotoasts.de>
Thu, 18 Jun 2009 21:54:30 +0000 (23:54 +0200)
panels/midori-bookmark-store.c

index da40177437ae1a8cf4df3b769cfc041f73d5a597..b8e03f23f8bde734ab9857838354f177e8d78ea7 100644 (file)
@@ -54,8 +54,6 @@ midori_bookmark_store_init (MidoriBookmarkStore* bookmark_store)
 static void
 midori_bookmark_store_finalize (GObject* object)
 {
-    MidoriBookmarkStore* bookmark_store = MIDORI_BOOKMARK_STORE (object);
-
     /* Nothing to do */
 }
 
@@ -94,11 +92,11 @@ midori_bookmark_store_new (gint n_columns,
 
     g_return_val_if_fail (n_columns > 0, NULL);
 
-    treestore = g_object_new (GTK_TYPE_TREE_STORE, NULL);
+    treestore = g_object_new (MIDORI_TYPE_BOOKMARK_STORE, NULL);
 
     va_start (args, n_columns);
 
-    types = g_new (gint, n_columns);
+    types = g_new (GType, n_columns);
     for (i = 0; i < n_columns; i++)
     {
         GType type = va_arg (args, GType);