summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hammond <chipx86@chipx86.com>2005-07-17 01:29:30 +0000
committerChristian Hammond <chipx86@chipx86.com>2005-07-17 01:29:30 +0000
commit057751cc69342cc5e1e3837bf3e9267da63e9163 (patch)
tree9e4edc553d14b7a47b61641bde12b66f4b14d2ac
parent55d6f9dfcce3ca86ae2be8d0657e3fd334cb5b65 (diff)
downloadlibnotify-057751cc69342cc5e1e3837bf3e9267da63e9163.tar.gz
Fix the key type for the dictionary for hints on D-BUS 0.3x. The notification-daemon side is still broken in this regard.
-rw-r--r--ChangeLog6
-rw-r--r--libnotify/notify.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d8ba59e..88dddf2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sat Jul 16 02:53:06 PDT 2005 Christian Hammond <chipx86@gnupdate.org>
+
+ * libnotify/notify.c:
+ - Fix the key type for the dictionary for hints on D-BUS 0.3x. The
+ notification-daemon side is still broken in this regard.
+
Sat Jul 16 02:51:42 PDT 2005 Christian Hammond <chipx86@gnupdate.org>
* libnotify/dbus-compat.h:
diff --git a/libnotify/notify.c b/libnotify/notify.c
index e9468d2..59bfef8 100644
--- a/libnotify/notify.c
+++ b/libnotify/notify.c
@@ -833,7 +833,7 @@ notify_send_notification_varg(NotifyHandle *replaces, const char *type,
#if NOTIFY_CHECK_DBUS_VERSION(0, 30)
dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
- DBUS_TYPE_UINT32_AS_STRING
+ DBUS_TYPE_STRING_AS_STRING
DBUS_TYPE_STRING_AS_STRING
DBUS_DICT_ENTRY_END_CHAR_AS_STRING,
&dict_iter);