assign the return value of xdg_mime_list_mime_parents() to a variable of

2008-02-01  Michael Natterer  <mitch@imendio.com>

	* gcontenttype.c (_g_unix_content_type_get_parents): assign the
	return value of xdg_mime_list_mime_parents() to a variable of the
	correct type.


svn path=/trunk/; revision=6441
This commit is contained in:
Michael Natterer 2008-02-01 13:17:04 +00:00 committed by Michael Natterer
parent a7749bab36
commit 573a73f391
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-02-01 Michael Natterer <mitch@imendio.com>
* gcontenttype.c (_g_unix_content_type_get_parents): assign the
return value of xdg_mime_list_mime_parents() to a variable of the
correct type.
2008-02-01 Alexander Larsson <alexl@redhat.com>
* gappinfo.c (g_app_info_launch_uris):

View File

@ -322,7 +322,7 @@ char **
_g_unix_content_type_get_parents (const char *type)
{
const char *umime;
const char **parents;
char **parents;
GPtrArray *array;
int i;