summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <teuf@gnome.org>2004-01-27 20:05:43 +0000
committerChristophe Fergeau <teuf@src.gnome.org>2004-01-27 20:05:43 +0000
commitbcf835385521772239ef1ef0cd587f6fe7b38e0e (patch)
tree3f171122bbcd9dc4b9cb951a4d5c6afb75296f86
parenteb96f923a6491ed196a68d5362f0071e11f0da6c (diff)
downloadnautilus-bcf835385521772239ef1ef0cd587f6fe7b38e0e.tar.gz
compare a11y_item_action_idle_handler with 0, not NULL, fixes compilation
2004-01-27 Christophe Fergeau <teuf@gnome.org> * libnautilus-private/nautilus-icon-container.c: compare a11y_item_action_idle_handler with 0, not NULL, fixes compilation
-rw-r--r--ChangeLog5
-rw-r--r--libnautilus-private/nautilus-icon-container.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f3b39a224..e3555b6c6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-01-27 Christophe Fergeau <teuf@gnome.org>
+
+ * libnautilus-private/nautilus-icon-container.c: compare
+ a11y_item_action_idle_handler with 0, not NULL, fixes compilation
+
2004-01-27 Padraig O'Briain <padraig.obriain@sun.com>
* libnautilus-private/nautilus-icon-container.c: Implement AtkAction
diff --git a/libnautilus-private/nautilus-icon-container.c b/libnautilus-private/nautilus-icon-container.c
index 919583c7c..0cfe01115 100644
--- a/libnautilus-private/nautilus-icon-container.c
+++ b/libnautilus-private/nautilus-icon-container.c
@@ -3008,7 +3008,7 @@ finalize (GObject *object)
}
g_queue_free (details->a11y_item_action_queue);
}
- if (details->a11y_item_action_idle_handler != NULL) {
+ if (details->a11y_item_action_idle_handler != 0) {
g_source_remove (details->a11y_item_action_idle_handler);
}