Add Win32 versions of some new content type APIs

This commit adds minimal versions of
g_content_type_get_symbolic_icon and
g_content_type_get_generic_icon_name.
https://bugzilla.gnome.org/show_bug.cgi?id=683642
This commit is contained in:
Matthias Clasen 2012-10-15 19:22:50 -04:00
parent 93bdc5b3d9
commit dace477c92

View File

@ -244,6 +244,18 @@ g_content_type_get_icon (const gchar *type)
return G_ICON (themed_icon);
}
GIcon *
g_content_type_get_symbolic_icon (const gchar *type)
{
return g_content_type_get_icon (type);
}
gchar *
g_content_type_get_generic_icon_name (const gchar *type)
{
return NULL;
}
gboolean
g_content_type_can_be_executable (const gchar *type)
{