summaryrefslogtreecommitdiff
path: root/gio/src/outputstream.ccg
diff options
context:
space:
mode:
Diffstat (limited to 'gio/src/outputstream.ccg')
-rw-r--r--gio/src/outputstream.ccg24
1 files changed, 12 insertions, 12 deletions
diff --git a/gio/src/outputstream.ccg b/gio/src/outputstream.ccg
index e340c2a1..268edade 100644
--- a/gio/src/outputstream.ccg
+++ b/gio/src/outputstream.ccg
@@ -34,7 +34,7 @@ OutputStream::write_async(const void* buffer, gsize count, const SlotAsyncReady&
auto slot_copy = new SlotAsyncReady(slot);
g_output_stream_write_async(gobj(), buffer, count, io_priority, Glib::unwrap(cancellable),
- &SignalProxy_async_callback, slot_copy);
+ &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -47,7 +47,7 @@ OutputStream::write_async(
auto slot_copy = new SlotAsyncReady(slot);
g_output_stream_write_async(
- gobj(), buffer, count, io_priority, nullptr, &SignalProxy_async_callback, slot_copy);
+ gobj(), buffer, count, io_priority, nullptr, &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -60,7 +60,7 @@ OutputStream::write_all_async(const void* buffer, gsize count, const SlotAsyncRe
auto slot_copy = new SlotAsyncReady(slot);
g_output_stream_write_all_async(gobj(), buffer, count, io_priority, Glib::unwrap(cancellable),
- &SignalProxy_async_callback, slot_copy);
+ &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -73,7 +73,7 @@ OutputStream::write_all_async(
auto slot_copy = new SlotAsyncReady(slot);
g_output_stream_write_all_async(
- gobj(), buffer, count, io_priority, nullptr, &SignalProxy_async_callback, slot_copy);
+ gobj(), buffer, count, io_priority, nullptr, &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -87,7 +87,7 @@ OutputStream::splice_async(const Glib::RefPtr<InputStream>& source, const SlotAs
g_output_stream_splice_async(gobj(), Glib::unwrap(source),
static_cast<GOutputStreamSpliceFlags>(flags), io_priority, Glib::unwrap(cancellable),
- &SignalProxy_async_callback, slot_copy);
+ &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -100,7 +100,7 @@ OutputStream::splice_async(const Glib::RefPtr<InputStream>& source, const SlotAs
auto slot_copy = new SlotAsyncReady(slot);
g_output_stream_splice_async(gobj(), Glib::unwrap(source),
- static_cast<GOutputStreamSpliceFlags>(flags), io_priority, nullptr, &SignalProxy_async_callback,
+ static_cast<GOutputStreamSpliceFlags>(flags), io_priority, nullptr, &giomm_SignalProxy_async_callback,
slot_copy);
}
@@ -114,7 +114,7 @@ OutputStream::flush_async(
auto slot_copy = new SlotAsyncReady(slot);
g_output_stream_flush_async(
- gobj(), io_priority, Glib::unwrap(cancellable), &SignalProxy_async_callback, slot_copy);
+ gobj(), io_priority, Glib::unwrap(cancellable), &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -125,7 +125,7 @@ OutputStream::flush_async(const SlotAsyncReady& slot, int io_priority)
// and deleted in the callback.
auto slot_copy = new SlotAsyncReady(slot);
- g_output_stream_flush_async(gobj(), io_priority, nullptr, &SignalProxy_async_callback, slot_copy);
+ g_output_stream_flush_async(gobj(), io_priority, nullptr, &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -138,7 +138,7 @@ OutputStream::close_async(
auto slot_copy = new SlotAsyncReady(slot);
g_output_stream_close_async(
- gobj(), io_priority, Glib::unwrap(cancellable), &SignalProxy_async_callback, slot_copy);
+ gobj(), io_priority, Glib::unwrap(cancellable), &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -149,7 +149,7 @@ OutputStream::close_async(const SlotAsyncReady& slot, int io_priority)
// and deleted in the callback.
auto slot_copy = new SlotAsyncReady(slot);
- g_output_stream_close_async(gobj(), io_priority, nullptr, &SignalProxy_async_callback, slot_copy);
+ g_output_stream_close_async(gobj(), io_priority, nullptr, &giomm_SignalProxy_async_callback, slot_copy);
}
gssize
@@ -210,7 +210,7 @@ OutputStream::write_bytes_async(const Glib::RefPtr<const Glib::Bytes>& bytes,
SlotAsyncReady* slot_copy = new SlotAsyncReady(slot);
g_output_stream_write_bytes_async(gobj(), const_cast<GBytes*>(Glib::unwrap(bytes)), io_priority,
- Glib::unwrap(cancellable), &SignalProxy_async_callback, slot_copy);
+ Glib::unwrap(cancellable), &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -223,7 +223,7 @@ OutputStream::write_bytes_async(
SlotAsyncReady* slot_copy = new SlotAsyncReady(slot);
g_output_stream_write_bytes_async(gobj(), const_cast<GBytes*>(Glib::unwrap(bytes)), io_priority,
- nullptr, &SignalProxy_async_callback, slot_copy);
+ nullptr, &giomm_SignalProxy_async_callback, slot_copy);
}
gssize