summaryrefslogtreecommitdiff
path: root/gio/src/iostream.ccg
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2015-11-20 10:10:51 +0100
committerMurray Cumming <murrayc@murrayc.com>2015-11-20 10:18:15 +0100
commit760415293337380b9fa78000670f85bab7406bea (patch)
treef4bca74c00be9cb536d0fd5efee7d1f1dd3d2491 /gio/src/iostream.ccg
parent18db5d7fff3b21a754dd053c0af658bdff90241e (diff)
downloadglibmm-760415293337380b9fa78000670f85bab7406bea.tar.gz
Gio: Use of nullptr instead of 0.
Diffstat (limited to 'gio/src/iostream.ccg')
-rw-r--r--gio/src/iostream.ccg4
1 files changed, 2 insertions, 2 deletions
diff --git a/gio/src/iostream.ccg b/gio/src/iostream.ccg
index 49b8280c..057bda85 100644
--- a/gio/src/iostream.ccg
+++ b/gio/src/iostream.ccg
@@ -50,7 +50,7 @@ IOStream::close_async(const SlotAsyncReady& slot, int io_priority)
g_io_stream_close_async(gobj(),
io_priority,
- 0,
+ nullptr,
&SignalProxy_async_callback,
slot_copy);
}
@@ -80,7 +80,7 @@ IOStream::splice_async(const Glib::RefPtr<IOStream>& stream2,
auto slot_copy = new SlotAsyncReady(slot);
g_io_stream_splice_async(gobj(), Glib::unwrap(stream2),
- static_cast<GIOStreamSpliceFlags>(flags), io_priority, 0,
+ static_cast<GIOStreamSpliceFlags>(flags), io_priority, nullptr,
&SignalProxy_async_callback, slot_copy);
}