[gtk+/places-sidebar: 51/53] Fix compilation



commit 86c784e277cbedd164e0517e9551a8d93ef3d2d0
Author: Federico Mena Quintero <federico gnome org>
Date:   Mon Sep 3 21:03:12 2012 -0500

    Fix compilation

 gtk/gtkbookmarksmanager.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gtk/gtkbookmarksmanager.c b/gtk/gtkbookmarksmanager.c
index 2bb16b7..abd31af 100644
--- a/gtk/gtkbookmarksmanager.c
+++ b/gtk/gtkbookmarksmanager.c
@@ -202,14 +202,14 @@ _gtk_bookmarks_manager_new (GtkBookmarksChangedFunc changed_func, gpointer chang
 
   bookmarks_file = get_bookmarks_file ();
   manager->bookmarks = read_bookmarks (bookmarks_file);
-  if (!priv->bookmarks)
+  if (!manager->bookmarks)
     {
       GFile *legacy_bookmarks_file;
 
       /* Read the legacy one and write it to the new one */
       legacy_bookmarks_file = get_legacy_bookmarks_file ();
-      priv->bookmarks = read_bookmarks (legacy_bookmarks_file);
-      save_bookmarks (bookmarks_file, priv->bookmarks);
+      manager->bookmarks = read_bookmarks (legacy_bookmarks_file);
+      save_bookmarks (bookmarks_file, manager->bookmarks);
 
       g_object_unref (legacy_bookmarks_file);
     }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]