[Xfce4-commits] <xfce4-settings:master> Use another boolean name that makes sence.
Jérôme Guelfucci
noreply at xfce.org
Tue Jan 19 19:34:45 CET 2010
Updating branch refs/heads/master
to 7853a76d631646b2ffb9e10e0a7a8de1a6d3b776 (commit)
from 488e9d48784fea4ea53b789baaf25e1c1a884702 (commit)
commit 7853a76d631646b2ffb9e10e0a7a8de1a6d3b776
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