summaryrefslogtreecommitdiff
path: root/gio/src/unixconnection.ccg
diff options
context:
space:
mode:
Diffstat (limited to 'gio/src/unixconnection.ccg')
-rw-r--r--gio/src/unixconnection.ccg8
1 files changed, 4 insertions, 4 deletions
diff --git a/gio/src/unixconnection.ccg b/gio/src/unixconnection.ccg
index b3ec278d..00ee1e53 100644
--- a/gio/src/unixconnection.ccg
+++ b/gio/src/unixconnection.ccg
@@ -28,7 +28,7 @@ UnixConnection::receive_credentials_async(
auto slot_copy = new SlotAsyncReady(slot);
g_unix_connection_receive_credentials_async(
- gobj(), Glib::unwrap(cancellable), &SignalProxy_async_callback, slot_copy);
+ gobj(), Glib::unwrap(cancellable), &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -37,7 +37,7 @@ UnixConnection::receive_credentials_async(const SlotAsyncReady& slot)
auto slot_copy = new SlotAsyncReady(slot);
g_unix_connection_receive_credentials_async(
- gobj(), nullptr, &SignalProxy_async_callback, slot_copy);
+ gobj(), nullptr, &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -47,7 +47,7 @@ UnixConnection::send_credentials_async(
auto slot_copy = new SlotAsyncReady(slot);
g_unix_connection_send_credentials_async(
- gobj(), Glib::unwrap(cancellable), &SignalProxy_async_callback, slot_copy);
+ gobj(), Glib::unwrap(cancellable), &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -56,7 +56,7 @@ UnixConnection::send_credentials_async(const SlotAsyncReady& slot)
{
auto slot_copy = new SlotAsyncReady(slot);
- g_unix_connection_send_credentials_async(gobj(), nullptr, &SignalProxy_async_callback, slot_copy);
+ g_unix_connection_send_credentials_async(gobj(), nullptr, &giomm_SignalProxy_async_callback, slot_copy);
}
} // namespace Gio