~netbook-remix-team/netbook-remix-launcher/packaging-jaunty

« back to all changes in this revision

Viewing changes to src/main.c

  • Committer: Neil Jagdish Patel
  • Date: 2009-09-03 11:22:23 UTC
  • mfrom: (397.3.14 trunk)
  • Revision ID: neil.patel@canonical.com-20090903112223-x62v7y8m29868h3j
Latest bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
  GError                *error = NULL;
157
157
  NlApp                 *app;
158
158
  GtkWidget             *window;
 
159
  LauncherFavorites     *favorites;
159
160
  GObject               *folders_source;
160
161
  GObject               *volumes_source;
161
162
  GObject               *app_loader;
199
200
        return EXIT_SUCCESS;
200
201
    }
201
202
  check_required_files_and_folders ();
 
203
 
 
204
  favorites      = launcher_favorites_get_default ();
202
205
  migrate_favorites ();
203
206
  
204
207
  gnome_program_init ("netbook-launcher", "0.1.2", LIBGNOMEUI_MODULE,
277
280
  g_object_unref (folders_source);
278
281
  g_object_unref (volumes_source);
279
282
  g_object_unref (uri_loader);
 
283
  g_object_unref (favorites);
280
284
 
281
285
  g_object_unref (plugin_manager);
282
286