summaryrefslogtreecommitdiff
path: root/gio/src/drive.ccg
diff options
context:
space:
mode:
Diffstat (limited to 'gio/src/drive.ccg')
-rw-r--r--gio/src/drive.ccg20
1 files changed, 10 insertions, 10 deletions
diff --git a/gio/src/drive.ccg b/gio/src/drive.ccg
index f8e0796e..c3e132a8 100644
--- a/gio/src/drive.ccg
+++ b/gio/src/drive.ccg
@@ -36,7 +36,7 @@ Drive::eject(
g_drive_eject_with_operation(gobj(), static_cast<GMountUnmountFlags>(flags),
nullptr, // mount_operation
- Glib::unwrap(cancellable), &SignalProxy_async_callback, slot_copy);
+ Glib::unwrap(cancellable), &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -50,7 +50,7 @@ Drive::eject(const SlotAsyncReady& slot, Mount::UnmountFlags flags)
g_drive_eject_with_operation(gobj(), static_cast<GMountUnmountFlags>(flags),
nullptr, // mount_operation
nullptr, // cancellable
- &SignalProxy_async_callback, slot_copy);
+ &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -63,7 +63,7 @@ Drive::eject(const Glib::RefPtr<MountOperation>& mount_operation, const SlotAsyn
auto slot_copy = new SlotAsyncReady(slot);
g_drive_eject_with_operation(gobj(), static_cast<GMountUnmountFlags>(flags),
- Glib::unwrap(mount_operation), Glib::unwrap(cancellable), &SignalProxy_async_callback,
+ Glib::unwrap(mount_operation), Glib::unwrap(cancellable), &giomm_SignalProxy_async_callback,
slot_copy);
}
@@ -79,7 +79,7 @@ Drive::eject(const Glib::RefPtr<MountOperation>& mount_operation, const SlotAsyn
g_drive_eject_with_operation(gobj(), static_cast<GMountUnmountFlags>(flags),
Glib::unwrap(mount_operation),
nullptr, // cancellable
- &SignalProxy_async_callback, slot_copy);
+ &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -110,7 +110,7 @@ Drive::poll_for_media(const SlotAsyncReady& slot, const Glib::RefPtr<Cancellable
// and deleted in the callback.
auto slot_copy = new SlotAsyncReady(slot);
- g_drive_poll_for_media(gobj(), Glib::unwrap(cancellable), &SignalProxy_async_callback, slot_copy);
+ g_drive_poll_for_media(gobj(), Glib::unwrap(cancellable), &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -123,7 +123,7 @@ Drive::poll_for_media(const SlotAsyncReady& slot)
g_drive_poll_for_media(gobj(),
nullptr, // cancellable
- &SignalProxy_async_callback, slot_copy);
+ &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -144,7 +144,7 @@ Drive::stop(const Glib::RefPtr<MountOperation>& mount_operation,
auto slot_copy = new SlotAsyncReady(slot);
g_drive_stop(gobj(), static_cast<GMountUnmountFlags>(flags), Glib::unwrap(mount_operation),
- Glib::unwrap(cancellable), &SignalProxy_async_callback, slot_copy);
+ Glib::unwrap(cancellable), &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -157,7 +157,7 @@ Drive::stop(const Glib::RefPtr<MountOperation>& mount_operation, const SlotAsync
auto slot_copy = new SlotAsyncReady(slot);
g_drive_stop(gobj(), static_cast<GMountUnmountFlags>(flags), Glib::unwrap(mount_operation),
- nullptr, &SignalProxy_async_callback, slot_copy);
+ nullptr, &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -170,7 +170,7 @@ Drive::start(const Glib::RefPtr<MountOperation>& mount_operation,
auto slot_copy = new SlotAsyncReady(slot);
g_drive_start(gobj(), static_cast<GDriveStartFlags>(flags), Glib::unwrap(mount_operation),
- Glib::unwrap(cancellable), &SignalProxy_async_callback, slot_copy);
+ Glib::unwrap(cancellable), &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -183,7 +183,7 @@ Drive::start(const Glib::RefPtr<MountOperation>& mount_operation, const SlotAsyn
auto slot_copy = new SlotAsyncReady(slot);
g_drive_start(gobj(), static_cast<GDriveStartFlags>(flags), Glib::unwrap(mount_operation),
- nullptr, &SignalProxy_async_callback, slot_copy);
+ nullptr, &giomm_SignalProxy_async_callback, slot_copy);
}
} // namespace Gio