summaryrefslogtreecommitdiff
path: root/gio/src/socketclient.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/socketclient.ccg
parent18db5d7fff3b21a754dd053c0af658bdff90241e (diff)
downloadglibmm-760415293337380b9fa78000670f85bab7406bea.tar.gz
Gio: Use of nullptr instead of 0.
Diffstat (limited to 'gio/src/socketclient.ccg')
-rw-r--r--gio/src/socketclient.ccg8
1 files changed, 4 insertions, 4 deletions
diff --git a/gio/src/socketclient.ccg b/gio/src/socketclient.ccg
index 6448c219..e2793826 100644
--- a/gio/src/socketclient.ccg
+++ b/gio/src/socketclient.ccg
@@ -52,7 +52,7 @@ SocketClient::connect_async(const Glib::RefPtr<SocketConnectable>& connectable,
g_socket_client_connect_async (gobj(),
connectable->gobj (),
- 0,
+ nullptr,
&SignalProxy_async_callback,
slot_copy);
}
@@ -89,7 +89,7 @@ SocketClient::connect_to_host_async(const Glib::ustring& host_and_port,
g_socket_client_connect_to_host_async (gobj(),
host_and_port.c_str (),
default_port,
- 0,
+ nullptr,
&SignalProxy_async_callback,
slot_copy);
}
@@ -126,7 +126,7 @@ SocketClient::connect_to_service_async(const Glib::ustring& domain,
g_socket_client_connect_to_service_async (gobj(),
domain.c_str (),
service.c_str (),
- 0,
+ nullptr,
&SignalProxy_async_callback,
slot_copy);
}
@@ -159,7 +159,7 @@ SocketClient::connect_to_uri_async(const Glib::ustring& uri, guint16 default_por
g_socket_client_connect_to_uri_async (gobj(),
uri.c_str(), default_port,
- 0,
+ nullptr,
&SignalProxy_async_callback,
slot_copy);
}