From: Havoc Pennington Date: Fri, 14 Feb 2003 04:10:00 +0000 (+0000) Subject: add @todo X-Git-Tag: dbus-0.4~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b822fb3913e175ff7c139e064453d5d97e758db0;p=platform%2Fupstream%2Fdbus.git add @todo --- diff --git a/dbus/dbus-errors.c b/dbus/dbus-errors.c index 9c178d8..3df58da 100644 --- a/dbus/dbus-errors.c +++ b/dbus/dbus-errors.c @@ -126,6 +126,10 @@ dbus_result_to_string (DBusResultCode code) /** * Initializes a DBusError structure. + * + * @todo calling dbus_error_init() in here is no good, + * for the same reason a GError* has to be set to NULL + * before you pass it in. * * @param error the DBusError. */ @@ -166,6 +170,10 @@ dbus_error_free (DBusError *error) * Assigns an error name and message to a DBusError. * Does nothing if error is #NULL. * + * @todo calling dbus_error_init() in here is no good, + * for the same reason a GError* has to be set to NULL + * before you pass it in. + * * @param error the error. * @param name the error name (not copied!!!) * @param message the error message (not copied!!!) diff --git a/dbus/dbus-errors.h b/dbus/dbus-errors.h index 55e2c31..45cedc5 100644 --- a/dbus/dbus-errors.h +++ b/dbus/dbus-errors.h @@ -76,9 +76,7 @@ dbus_bool_t dbus_set_error (DBusError *error, ...); void dbus_set_error_const (DBusError *error, const char *name, - const char *message); - - + const char *message); void dbus_set_result (DBusResultCode *code_address, DBusResultCode code);