mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-27 17:46:53 +02:00
GWin32AppInfo: Implement should_show vfunc
This commit is contained in:
parent
ebddb60e3e
commit
de6da5aa73
@ -5093,6 +5093,15 @@ g_win32_app_info_launch_uris (GAppInfo *appinfo,
|
|||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
g_win32_app_info_should_show (GAppInfo *appinfo)
|
||||||
|
{
|
||||||
|
/* FIXME: This is a placeholder implementation to avoid crashes
|
||||||
|
* for now. It can be made more specific to @appinfo in future. */
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
g_win32_app_info_launch (GAppInfo *appinfo,
|
g_win32_app_info_launch (GAppInfo *appinfo,
|
||||||
GList *files,
|
GList *files,
|
||||||
@ -5229,7 +5238,7 @@ g_win32_app_info_iface_init (GAppInfoIface *iface)
|
|||||||
iface->supports_uris = g_win32_app_info_supports_uris;
|
iface->supports_uris = g_win32_app_info_supports_uris;
|
||||||
iface->supports_files = g_win32_app_info_supports_files;
|
iface->supports_files = g_win32_app_info_supports_files;
|
||||||
iface->launch_uris = g_win32_app_info_launch_uris;
|
iface->launch_uris = g_win32_app_info_launch_uris;
|
||||||
/* iface->should_show = g_win32_app_info_should_show;*/
|
iface->should_show = g_win32_app_info_should_show;
|
||||||
/* iface->set_as_default_for_type = g_win32_app_info_set_as_default_for_type;*/
|
/* iface->set_as_default_for_type = g_win32_app_info_set_as_default_for_type;*/
|
||||||
/* iface->set_as_default_for_extension = g_win32_app_info_set_as_default_for_extension;*/
|
/* iface->set_as_default_for_extension = g_win32_app_info_set_as_default_for_extension;*/
|
||||||
/* iface->add_supports_type = g_win32_app_info_add_supports_type;*/
|
/* iface->add_supports_type = g_win32_app_info_add_supports_type;*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user