summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-object.h
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2003-08-12 02:43:50 +0000
committerHavoc Pennington <hp@redhat.com>2003-08-12 02:43:50 +0000
commit5c1a8e44903bd1dedc8cbefad78b0c8b61daada5 (patch)
tree4e05f33dd7160a0522745e46d14b34f798e188a8 /dbus/dbus-object.h
parentb29ea9115ea3277354b7ccbe442026279220f4ac (diff)
2003-08-11 Havoc Pennington <hp@pobox.com>
* bus/test.c (client_disconnect_handler): change to return HANDLED (would have been REMOVE_MESSAGE) * dbus/dbus-object.h (enum DBusHandlerResult): rename to HANDLED/NOT_YET_HANDLED instead of REMOVE_MESSAGE/ALLOW_MORE_HANDLERS to make it clearer how it should be used.
Diffstat (limited to 'dbus/dbus-object.h')
-rw-r--r--dbus/dbus-object.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/dbus-object.h b/dbus/dbus-object.h
index 76d0e6f6..23c12d15 100644
--- a/dbus/dbus-object.h
+++ b/dbus/dbus-object.h
@@ -41,8 +41,8 @@ typedef struct DBusCallbackObject DBusCallbackObject;
typedef enum
{
- DBUS_HANDLER_RESULT_REMOVE_MESSAGE, /**< Remove this message, no further processing. */
- DBUS_HANDLER_RESULT_ALLOW_MORE_HANDLERS, /**< Run any additional handlers that are interested in this message. */
+ DBUS_HANDLER_RESULT_HANDLED, /**< Remove this message, no further processing. */
+ DBUS_HANDLER_RESULT_NOT_YET_HANDLED, /**< Run any additional handlers that are interested in this message. */
DBUS_HANDLER_RESULT_NEED_MEMORY /**< Need more memory to handle this message. */
} DBusHandlerResult;