Author: jannis
Date: 2008-07-27 05:34:14 +0000 (Sun, 27 Jul 2008)
New Revision: 27378

Modified:
   xfce4-settings/trunk/ChangeLog
   xfce4-settings/trunk/dialogs/keyboard-settings/main.c
   xfce4-settings/trunk/xfce4-settings-helper/keyboard-shortcuts.c
Log:
        * dialogs/keyboard-settings/main.c,
          xfce4-settings-helper/keyboard-shortcuts.c: Use
          xfconf_channel_get_properties() instead of xfconf_channel_get_all().

Modified: xfce4-settings/trunk/ChangeLog
===================================================================
--- xfce4-settings/trunk/ChangeLog      2008-07-27 02:07:15 UTC (rev 27377)
+++ xfce4-settings/trunk/ChangeLog      2008-07-27 05:34:14 UTC (rev 27378)
@@ -1,3 +1,9 @@
+2008-07-27     Jannis Pohlmann <[EMAIL PROTECTED]>
+
+       * dialogs/keyboard-settings/main.c,
+         xfce4-settings-helper/keyboard-shortcuts.c: Use
+         xfconf_channel_get_properties() instead of xfconf_channel_get_all().
+
 2008-07-26     Nick Schermer <[EMAIL PROTECTED]>
 
        First commit with legacy code working (randr < 1.2). Randr

Modified: xfce4-settings/trunk/dialogs/keyboard-settings/main.c
===================================================================
--- xfce4-settings/trunk/dialogs/keyboard-settings/main.c       2008-07-27 
02:07:15 UTC (rev 27377)
+++ xfce4-settings/trunk/dialogs/keyboard-settings/main.c       2008-07-27 
05:34:14 UTC (rev 27378)
@@ -139,7 +139,7 @@
   g_return_if_fail (GTK_IS_TREE_VIEW (kbd_shortcuts_view));
   g_return_if_fail (GTK_IS_LIST_STORE (list_store));
 
-  shortcuts = xfconf_channel_get_all (kbd_channel);
+  shortcuts = xfconf_channel_get_properties (kbd_channel, NULL);
 
   if (G_LIKELY (shortcuts != NULL))
     {

Modified: xfce4-settings/trunk/xfce4-settings-helper/keyboard-shortcuts.c
===================================================================
--- xfce4-settings/trunk/xfce4-settings-helper/keyboard-shortcuts.c     
2008-07-27 02:07:15 UTC (rev 27377)
+++ xfce4-settings/trunk/xfce4-settings-helper/keyboard-shortcuts.c     
2008-07-27 05:34:14 UTC (rev 27378)
@@ -191,7 +191,7 @@
   helper->shortcuts = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, 
g_free);
 
   /* Get all properties of the channel */
-  properties = xfconf_channel_get_all (helper->channel);
+  properties = xfconf_channel_get_properties (helper->channel, NULL);
 
   if (G_LIKELY (properties != NULL))
     {

_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits

Reply via email to