~ubuntu-branches/debian/experimental/glib2.0/experimental

« back to all changes in this revision

Viewing changes to gio/gsettings-tool.c

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2015-08-26 17:25:52 UTC
  • mfrom: (1.67.13)
  • Revision ID: package-import@ubuntu.com-20150826172552-c3rs5tllwng5cr46
Tags: 2.45.6-1
* New upstream releases 2.45.5 and 2.45.6
  + GNetworkMonitor now provides information about metered networks
  + g_mem_set_vtable has been deprecated; it has not been working for quite
    a while. The recommendation is to use valgrind, or replace malloc
    itself.
* debian/patches/0001-GOptionContext-Don-t-crash-without-main-group.patch:
  Drop, applied upstream.
* debian/libglib2.0-0.symbols: Add new symbols for this release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
430
430
   * If the schema has zero keys then we won't be displaying any
431
431
   * notifications anyway.
432
432
   */
433
 
  keys = g_settings_list_keys (global_settings);
 
433
  keys = g_settings_schema_list_keys (global_schema);
434
434
  if (keys[0])
435
435
    g_variant_unref (g_settings_get_value (global_settings, keys[0]));
436
436
  g_strfreev (keys);