summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGian Mario Tagliaretti <gianmt@gnome.org>2010-01-01 20:22:21 +0100
committerGian Mario Tagliaretti <gianmt@gnome.org>2010-01-01 20:22:21 +0100
commit9b76fbff6f6897aaf26ed4644c1f19efc2826917 (patch)
treef61aa569516408bbe0717ab23584e6dd20b245f9
parent6f459786dd641cd49d81eba403d940620f961cab (diff)
downloadpygobject-9b76fbff6f6897aaf26ed4644c1f19efc2826917.tar.gz
pygobject-9b76fbff6f6897aaf26ed4644c1f19efc2826917.tar.xz
pygobject-9b76fbff6f6897aaf26ed4644c1f19efc2826917.zip
gio.Mount.unmount_with_operation() fix a copy/paste leftover
-rw-r--r--gio/gmount.override4
1 files changed, 2 insertions, 2 deletions
diff --git a/gio/gmount.override b/gio/gmount.override
index a663040..9fb0828 100644
--- a/gio/gmount.override
+++ b/gio/gmount.override
@@ -363,7 +363,7 @@ _wrap_g_mount_unmount_with_operation(PyGObject *self,
notify = pygio_notify_new();
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
- "O|OOOO:gio.Mount.unmount_mountable_with_operation",
+ "O|OOOO:gio.Mount.unmount_with_operation",
kwlist,
&notify->callback,
&py_flags,
@@ -384,7 +384,7 @@ _wrap_g_mount_unmount_with_operation(PyGObject *self,
pygio_notify_reference_callback(notify);
- g_file_unmount_mountable_with_operation(G_FILE(self->obj),
+ g_mount_unmount_with_operation(G_MOUNT(self->obj),
flags,
G_MOUNT_OPERATION(mount_operation->obj),
cancellable,