diff options
author | Ted Gould <ted@canonical.com> | 2009-02-25 15:14:26 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-02-25 15:14:26 -0600 |
commit | e792f8a058235bdff3d6646342c91abeadeb9819 (patch) | |
tree | b33dd03c00061ee167a90f0f6850a677f9d4a7d6 | |
parent | 87a945852017be0f31e6fce5ae3f2a1166a84b8f (diff) | |
download | libayatana-indicator-e792f8a058235bdff3d6646342c91abeadeb9819.tar.gz libayatana-indicator-e792f8a058235bdff3d6646342c91abeadeb9819.tar.bz2 libayatana-indicator-e792f8a058235bdff3d6646342c91abeadeb9819.zip |
true is TRUE
-rw-r--r-- | libindicate/listener.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libindicate/listener.c b/libindicate/listener.c index 6feb6d7..747c9f8 100644 --- a/libindicate/listener.c +++ b/libindicate/listener.c @@ -287,7 +287,7 @@ dbus_owner_change (DBusGProxy * proxy, const gchar * name, const gchar * prev, c /* g_debug("Name change on %s bus: '%s' from '%s' to '%s'", bus_name, name, prev, new); */ if (prev != NULL && prev[0] == '\0') { - todo_list_add(name, proxy, listener, false); + todo_list_add(name, proxy, listener, FALSE); } if (new != NULL && new[0] == '\0') { proxy_t * proxyt; @@ -370,7 +370,7 @@ build_todo_list_cb (DBusGProxy * proxy, char ** names, GError * error, void * da guint i = 0; for (i = 0; names[i] != NULL; i++) { - todo_list_add(names[i], proxy, listener, true); + todo_list_add(names[i], proxy, listener, TRUE); } return; |