summaryrefslogtreecommitdiff
path: root/gio/gsocketclient.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2009-05-27 18:20:08 -0400
committerMatthias Clasen <mclasen@redhat.com>2009-05-27 18:20:08 -0400
commit06144900ec87effb99c94e2d8369ca270d024bf1 (patch)
tree4de2e05c96793588e799dcf01b82ea1d27df21a2 /gio/gsocketclient.h
parenteecbbb0a20a114b4a2c6759aa108940902c8961c (diff)
downloadglib-06144900ec87effb99c94e2d8369ca270d024bf1.tar.gz
Documentation and coding style fixups
Lots of pedanic changes.
Diffstat (limited to 'gio/gsocketclient.h')
-rw-r--r--gio/gsocketclient.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/gio/gsocketclient.h b/gio/gsocketclient.h
index 990d23bf8..c59c11422 100644
--- a/gio/gsocketclient.h
+++ b/gio/gsocketclient.h
@@ -88,13 +88,13 @@ GSocketConnection * g_socket_client_connect (GSocket
GCancellable *cancellable,
GError **error);
GSocketConnection * g_socket_client_connect_to_host (GSocketClient *client,
- const char *host_and_port,
- int default_port,
+ const gchar *host_and_port,
+ gint default_port,
GCancellable *cancellable,
GError **error);
GSocketConnection * g_socket_client_connect_to_service (GSocketClient *client,
- const char *domain,
- const char *service,
+ const gchar *domain,
+ const gchar *service,
GCancellable *cancellable,
GError **error);
void g_socket_client_connect_async (GSocketClient *client,
@@ -106,8 +106,8 @@ GSocketConnection * g_socket_client_connect_finish (GSocket
GAsyncResult *result,
GError **error);
void g_socket_client_connect_to_host_async (GSocketClient *client,
- const char *host_and_port,
- int default_port,
+ const gchar *host_and_port,
+ gint default_port,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
@@ -116,8 +116,8 @@ GSocketConnection * g_socket_client_connect_to_host_finish (GSocket
GError **error);
void g_socket_client_connect_to_service_async (GSocketClient *client,
- const char *domain,
- const char *service,
+ const gchar *domain,
+ const gchar *service,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);