[Xfce4-commits] <xfce4-settings:jeromeg/settings-editor> Use another boolean name that makes sence.
Nick Schermer
noreply at xfce.org
Tue Jan 19 19:18:02 CET 2010
Updating branch refs/heads/jeromeg/settings-editor
to 87e5ba786499287d89921553cbda082d2629e6a9 (commit)
from 1e6bc6f4f01ebea98fcff1a622c2b1b950bae5dc (commit)
commit 87e5ba786499287d89921553cbda082d2629e6a9
Author: Nick Schermer <nick at xfce.org>
Date: Tue Jan 19 19:07:49 2010 +0100
Use another boolean name that makes sence.
xfce4-settings-editor/main_window.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/xfce4-settings-editor/main_window.c b/xfce4-settings-editor/main_window.c
index 547fe55..c36a810 100644
--- a/xfce4-settings-editor/main_window.c
+++ b/xfce4-settings-editor/main_window.c
@@ -249,7 +249,7 @@ static void print_list (gpointer data, gpointer user_data)
TRACE ("%s", (gchar *) data);
}
-static void update_iter (gboolean empty, XfconfChannel *channel, gchar *key, GtkTreeStore *store, GtkTreeIter *child_iter)
+static void update_iter (gboolean not_empty, XfconfChannel *channel, gchar *key, GtkTreeStore *store, GtkTreeIter *child_iter)
{
GValue child_locked = {0, };
GValue child_type = {0, };
@@ -259,7 +259,7 @@ static void update_iter (gboolean empty, XfconfChannel *channel, gchar *key, Gtk
g_value_init (&child_type, G_TYPE_STRING);
g_value_init (&child_value, G_TYPE_STRING);
- if (empty)
+ if (not_empty)
{
GValue property_value = {0, };
More information about the Xfce4-commits
mailing list