summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2012-08-20 19:47:45 +0200
committerCosimo Cecchi <cosimoc@gnome.org>2012-08-21 11:17:56 +0200
commit6294de0ae00594c27527fbe22fd877254775fc9c (patch)
tree6d272fc9c276502bdbbcffb5beb9065434573991 /common
parent9961654b7f24c0d6349946c9c79b62a770aafee2 (diff)
mount-op: adapt to guint64->gint64 API change
https://bugzilla.gnome.org/show_bug.cgi?id=682284
Diffstat (limited to 'common')
-rw-r--r--common/gmountoperationdbus.c4
-rw-r--r--common/gmountsource.c8
-rw-r--r--common/gmountsource.h4
-rw-r--r--common/org.gtk.vfs.xml4
4 files changed, 10 insertions, 10 deletions
diff --git a/common/gmountoperationdbus.c b/common/gmountoperationdbus.c
index 10f1267a..cfd99efd 100644
--- a/common/gmountoperationdbus.c
+++ b/common/gmountoperationdbus.c
@@ -228,8 +228,8 @@ static gboolean
handle_show_unmount_progress (GVfsDBusMountOperation *object,
GDBusMethodInvocation *invocation,
const gchar *arg_message_string,
- guint64 arg_time_left,
- guint64 arg_bytes_left,
+ gint64 arg_time_left,
+ gint64 arg_bytes_left,
gpointer data)
{
GMountOperationDBus *op_dbus = data;
diff --git a/common/gmountsource.c b/common/gmountsource.c
index f75461cf..a2492377 100644
--- a/common/gmountsource.c
+++ b/common/gmountsource.c
@@ -945,8 +945,8 @@ show_unmount_progress_reply (GVfsDBusMountOperation *proxy,
void
g_mount_source_show_unmount_progress (GMountSource *source,
const char *message_string,
- guint64 time_left,
- guint64 bytes_left)
+ gint64 time_left,
+ gint64 bytes_left)
{
GVfsDBusMountOperation *proxy;
@@ -978,8 +978,8 @@ g_mount_source_show_unmount_progress (GMountSource *source,
static void
op_show_unmount_progress (GMountOperation *op,
const char *message,
- guint64 time_left,
- guint64 bytes_left,
+ gint64 time_left,
+ gint64 bytes_left,
GMountSource *mount_source)
{
g_mount_source_show_unmount_progress (mount_source,
diff --git a/common/gmountsource.h b/common/gmountsource.h
index d2a9eaec..58f7f7fe 100644
--- a/common/gmountsource.h
+++ b/common/gmountsource.h
@@ -127,8 +127,8 @@ gboolean g_mount_source_show_processes_finish (GMountSource
void g_mount_source_show_unmount_progress (GMountSource *mount_source,
const char *message,
- guint64 time_left,
- guint64 bytes_left);
+ gint64 time_left,
+ gint64 bytes_left);
gboolean g_mount_source_abort (GMountSource *source);
diff --git a/common/org.gtk.vfs.xml b/common/org.gtk.vfs.xml
index 3931c128..e13347cf 100644
--- a/common/org.gtk.vfs.xml
+++ b/common/org.gtk.vfs.xml
@@ -159,8 +159,8 @@
</method>
<method name="ShowUnmountProgress">
<arg type='s' name='message_string' direction='in'/>
- <arg type='t' name='time_left' direction='in'/>
- <arg type='t' name='bytes_left' direction='in'/>
+ <arg type='x' name='time_left' direction='in'/>
+ <arg type='x' name='bytes_left' direction='in'/>
</method>
<method name="Aborted">
</method>