Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2005-09-01 08:12:45 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-09-01 08:12:45 (GMT)
commitb25c2bfcf89697009a3129f123073b84a312dfdd (patch)
tree52c4e62ae0a6d06a1a52710a9ca4d9d5a357c8d7 /shell
parent7ce9953136b6ce550c0afb9d4877da47681c340d (diff)
Fix timestamp parameter with dbus <= 0.33
2005-09-01 Marco Pesenti Gritti <mpg@redhat.com> * shell/main.c: (load_files_remote): Fix timestamp parameter with dbus <= 0.33
Diffstat (limited to 'shell')
-rw-r--r--shell/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/main.c b/shell/main.c
index 5af54e6..8aac27a 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -152,7 +152,7 @@ load_files_remote (const char **files)
if (!files) {
#if DBUS_VERSION <= 33
call = dbus_g_proxy_begin_call (remote_object, "OpenWindow",
- DBUS_TYPE_UINT32, timestamp,
+ DBUS_TYPE_UINT32, &timestamp,
DBUS_TYPE_INVALID);
if (!dbus_g_proxy_end_call (remote_object, call, &error, DBUS_TYPE_INVALID)) {
@@ -193,7 +193,7 @@ load_files_remote (const char **files)
call = dbus_g_proxy_begin_call (remote_object, "OpenURI",
DBUS_TYPE_STRING, &uri,
DBUS_TYPE_STRING, &page_label,
- DBUS_TYPE_UINT32, timestamp,
+ DBUS_TYPE_UINT32, &timestamp,
DBUS_TYPE_INVALID);
if (!dbus_g_proxy_end_call (remote_object, call, &error, DBUS_TYPE_INVALID)) {