Silence another deprecation warning

This commit is contained in:
Matthias Clasen 2012-01-30 14:21:03 -05:00
parent 5ae5fc85f4
commit bdd0aada62

View File

@ -3382,11 +3382,14 @@ GAppInfo *
g_desktop_app_info_lookup_get_default_for_uri_scheme (GDesktopAppInfoLookup *lookup,
const char *uri_scheme)
{
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
GDesktopAppInfoLookupIface *iface;
g_return_val_if_fail (G_IS_DESKTOP_APP_INFO_LOOKUP (lookup), NULL);
iface = G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE (lookup);
return (* iface->get_default_for_uri_scheme) (lookup, uri_scheme);
#pragma GCC diagnostic pop
}