summaryrefslogtreecommitdiff
path: root/gio/gfileicon.c
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2007-11-29 07:17:59 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2007-11-29 07:17:59 +0000
commit09471fec46619a62fbe9b6e7a7b67c9a421f919e (patch)
tree4168bd6e3eb9f80f3f207e5b5f1619805fdc7f9f /gio/gfileicon.c
parent7c0e098f4e33397d2dca8706dd35ec32294b4adb (diff)
downloadglib-09471fec46619a62fbe9b6e7a7b67c9a421f919e.tar.gz
Coding style fixups
svn path=/trunk/; revision=5993
Diffstat (limited to 'gio/gfileicon.c')
-rw-r--r--gio/gfileicon.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/gio/gfileicon.c b/gio/gfileicon.c
index 612184d0c..0c761720c 100644
--- a/gio/gfileicon.c
+++ b/gio/gfileicon.c
@@ -155,11 +155,11 @@ g_file_icon_icon_iface_init (GIconIface *iface)
static GInputStream *
-g_file_icon_load (GLoadableIcon *icon,
- int size,
- char **type,
- GCancellable *cancellable,
- GError **error)
+g_file_icon_load (GLoadableIcon *icon,
+ int size,
+ char **type,
+ GCancellable *cancellable,
+ GError **error)
{
GFileInputStream *stream;
GFileIcon *file_icon = G_FILE_ICON (icon);
@@ -185,9 +185,9 @@ load_data_free (LoadData *data)
}
static void
-load_async_callback (GObject *source_object,
+load_async_callback (GObject *source_object,
GAsyncResult *res,
- gpointer user_data)
+ gpointer user_data)
{
GFileInputStream *stream;
GError *error = NULL;
@@ -223,11 +223,11 @@ load_async_callback (GObject *source_object,
}
static void
-g_file_icon_load_async (GLoadableIcon *icon,
- int size,
- GCancellable *cancellable,
- GAsyncReadyCallback callback,
- gpointer user_data)
+g_file_icon_load_async (GLoadableIcon *icon,
+ int size,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data)
{
GFileIcon *file_icon = G_FILE_ICON (icon);
LoadData *data;
@@ -244,10 +244,10 @@ g_file_icon_load_async (GLoadableIcon *icon,
}
static GInputStream *
-g_file_icon_load_finish (GLoadableIcon *icon,
- GAsyncResult *res,
- char **type,
- GError **error)
+g_file_icon_load_finish (GLoadableIcon *icon,
+ GAsyncResult *res,
+ char **type,
+ GError **error)
{
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
gpointer op;