[Galago-commits] r2529 - in branches/libgalago/protocol-cleanup: .
libgalago
galago-commits at freedesktop.org
galago-commits at freedesktop.org
Fri Feb 3 02:26:46 PST 2006
Author: chipx86
Date: 2006-02-03 02:26:44 -0800 (Fri, 03 Feb 2006)
New Revision: 2529
Modified:
branches/libgalago/protocol-cleanup/ChangeLog
branches/libgalago/protocol-cleanup/libgalago/galago-account.c
branches/libgalago/protocol-cleanup/libgalago/galago-presence.c
Log:
Fix the GalagoAccount and GalagoPresence D-BUS signatures, now that we're passing object paths in. Note that in the future, we're going to want to move the Object Path part of it into the galago_object_* functions, as it will be universal to all objects.
Modified: branches/libgalago/protocol-cleanup/ChangeLog
===================================================================
--- branches/libgalago/protocol-cleanup/ChangeLog 2006-02-03 10:18:19 UTC (rev 2528)
+++ branches/libgalago/protocol-cleanup/ChangeLog 2006-02-03 10:26:44 UTC (rev 2529)
@@ -1,3 +1,12 @@
+Fri Feb 03 02:25:55 PST 2006 Christian Hammond <chipx86 at chipx86.com>
+
+ * libgalago/galago-account.c:
+ * libgalago/galago-presence.c:
+ - Fix the GalagoAccount and GalagoPresence D-BUS signatures, now
+ that we're passing object paths in. Note that in the future, we're
+ going to want to move the Object Path part of it into the
+ galago_object_* functions, as it will be universal to all objects.
+
Fri Feb 03 02:13:42 PST 2006 Christian Hammond <chipx86 at chipx86.com>
* libgalago/galago-account.c:
Modified: branches/libgalago/protocol-cleanup/libgalago/galago-account.c
===================================================================
--- branches/libgalago/protocol-cleanup/libgalago/galago-account.c 2006-02-03 10:18:19 UTC (rev 2528)
+++ branches/libgalago/protocol-cleanup/libgalago/galago-account.c 2006-02-03 10:26:44 UTC (rev 2529)
@@ -374,6 +374,7 @@
galago_account_dbus_get_signature(void)
{
return g_strconcat(
+ DBUS_TYPE_STRING_AS_STRING, // object path
galago_object_type_get_dbus_signature(GALAGO_TYPE_SERVICE), // service
galago_object_type_get_dbus_signature(GALAGO_TYPE_PERSON), // person
DBUS_TYPE_STRING_AS_STRING, // username
Modified: branches/libgalago/protocol-cleanup/libgalago/galago-presence.c
===================================================================
--- branches/libgalago/protocol-cleanup/libgalago/galago-presence.c 2006-02-03 10:18:19 UTC (rev 2528)
+++ branches/libgalago/protocol-cleanup/libgalago/galago-presence.c 2006-02-03 10:26:44 UTC (rev 2529)
@@ -266,6 +266,7 @@
galago_presence_dbus_get_signature(void)
{
return g_strconcat(
+ DBUS_TYPE_STRING_AS_STRING, // object path
galago_object_type_get_dbus_signature(GALAGO_TYPE_ACCOUNT), // account
DBUS_TYPE_BOOLEAN_AS_STRING, // idle flag
DBUS_TYPE_UINT32_AS_STRING, // idle time
More information about the galago-commits
mailing list