summaryrefslogtreecommitdiff
path: root/gio/gloadableicon.c
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2007-11-30 05:11:25 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2007-11-30 05:11:25 +0000
commita2ca589703273fca80cb126430a8b058aba3eb52 (patch)
tree1287fd427855e5fac9141a32dddcc3409cad6e7c /gio/gloadableicon.c
parentf3be1cf2d19acbe57cf61039efbf6adca84237b6 (diff)
downloadglib-a2ca589703273fca80cb126430a8b058aba3eb52.tar.gz
More coding style fixes
svn path=/trunk/; revision=5999
Diffstat (limited to 'gio/gloadableicon.c')
-rw-r--r--gio/gloadableicon.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/gio/gloadableicon.c b/gio/gloadableicon.c
index 9e7a5c9b5..e1f8a4350 100644
--- a/gio/gloadableicon.c
+++ b/gio/gloadableicon.c
@@ -32,8 +32,7 @@
* @short_description: Loadable Icons
* @see_also: #GIcon, #GThemedIcon
*
- * Implements #GIcon and adds the ability to load icons.
- *
+ * Extends the #GIcon interface and adds the ability to load icons.
**/
static void g_loadable_icon_real_load_async (GLoadableIcon *icon,
@@ -122,7 +121,6 @@ g_loadable_icon_load (GLoadableIcon *icon,
iface = G_LOADABLE_ICON_GET_IFACE (icon);
return (* iface->load) (icon, size, type, cancellable, error);
-
}
/**
@@ -136,7 +134,6 @@ g_loadable_icon_load (GLoadableIcon *icon,
* Loads an icon asynchronously. To finish this function, see
* g_loadable_icon_load_finish(). For the synchronous, blocking
* version of this function, see g_loadable_icon_load().
- *
**/
void
g_loadable_icon_load_async (GLoadableIcon *icon,
@@ -152,7 +149,6 @@ g_loadable_icon_load_async (GLoadableIcon *icon,
iface = G_LOADABLE_ICON_GET_IFACE (icon);
(* iface->load_async) (icon, size, cancellable, callback, user_data);
-
}
/**
@@ -188,7 +184,6 @@ g_loadable_icon_load_finish (GLoadableIcon *icon,
iface = G_LOADABLE_ICON_GET_IFACE (icon);
return (* iface->load_finish) (icon, res, type, error);
-
}
/********************************************