~ubuntu-branches/ubuntu/precise/vino/precise-proposed-201205170738

« back to all changes in this revision

Viewing changes to capplet/vino-preferences.c

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Bicha
  • Date: 2011-07-25 22:19:23 UTC
  • mfrom: (1.1.50 upstream)
  • Revision ID: james.westby@ubuntu.com-20110725221923-8h134fai9g0fqz9f
Tags: 3.1.4-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
493
493
  app = vino_preferences_new ();
494
494
  status = g_application_run (G_APPLICATION(app), argc, argv);
495
495
  g_object_unref (app);
 
496
/* g_settings_sync() is not required with GApplication in recent versions of
 
497
 * Gio, bug 653914. */
 
498
#if GLIB_CHECK_VERSION (2, 29, 2)
 
499
#else
496
500
  g_settings_sync ();
 
501
#endif
497
502
 
498
503
  return status;
499
504
}