From: Emmanuele Bassi Date: Wed, 10 Oct 2007 09:31:36 +0000 (+0000) Subject: Document that you need to unref the returned GdkPixbuf. (#484132, X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=3ca1e0cd2d6ca7551d205f4bdbc7e1588669f6cf;p=~andy%2Fgtk Document that you need to unref the returned GdkPixbuf. (#484132, 2007-10-10 Emmanuele Bassi * gtk/gtkrecentmanager.c (gtk_recent_info_get_icon): Document that you need to unref the returned GdkPixbuf. (#484132, Christian Persch) (build_recent_info): Use g_slist_prepend() when building the applications list. svn path=/trunk/; revision=18904 --- diff --git a/ChangeLog b/ChangeLog index af938db8a..0e58f8654 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2007-10-10 Emmanuele Bassi + + * gtk/gtkrecentmanager.c (gtk_recent_info_get_icon): Document + that you need to unref the returned GdkPixbuf. (#484132, + Christian Persch) + + (build_recent_info): Use g_slist_prepend() when building + the applications list. + 2007-10-10 Emmanuele Bassi * gtk/gtkfilechooserdefault.c (list_mtime_data_func): Convert diff --git a/gtk/gtkrecentmanager.c b/gtk/gtkrecentmanager.c index 4022b46c3..2e21d09c2 100644 --- a/gtk/gtkrecentmanager.c +++ b/gtk/gtkrecentmanager.c @@ -1140,8 +1140,7 @@ build_recent_info (GBookmarkFile *bookmarks, app_info->count = count; app_info->stamp = stamp; - info->applications = g_slist_append (info->applications, - app_info); + info->applications = g_slist_prepend (info->applications, app_info); g_hash_table_replace (info->apps_lookup, app_info->name, app_info); } @@ -1936,7 +1935,8 @@ get_icon_fallback (const gchar *icon_name, * * Retrieves the icon of size @size associated to the resource MIME type. * - * Return value: a #GdkPixbuf containing the icon, or %NULL. + * Return value: a #GdkPixbuf containing the icon, or %NULL. Use + * g_object_unref() when finished using the icon. * * Since: 2.10 */ @@ -2202,7 +2202,8 @@ gtk_recent_info_get_short_name (GtkRecentInfo *info) * is local, it returns a local path; if the resource is not local, * it returns the UTF-8 encoded content of gtk_recent_info_get_uri(). * - * Return value: a UTF-8 string containing the resource's URI or %NULL + * Return value: a newly allocated UTF-8 string containing the + * resource's URI or %NULL. Use g_free() when done using it. * * Since: 2.10 */