diff options
author | rbuj <[email protected]> | 2021-10-21 10:05:46 +0200 |
---|---|---|
committer | Robert Antoni Buj Gelonch <[email protected]> | 2021-12-21 14:00:17 +0100 |
commit | 746d5edbd0f4d23ef4c60ecb76eb3eaa52f801c4 (patch) | |
tree | aa4ef6d04f2b1bd13bae8afec306a154e3497ae8 | |
parent | 3bd33d4b89dd74b5f523957d092acfdf49410280 (diff) | |
download | eom-746d5edbd0f4d23ef4c60ecb76eb3eaa52f801c4.tar.bz2 eom-746d5edbd0f4d23ef4c60ecb76eb3eaa52f801c4.tar.xz |
eom-window: fix warning incompatible-pointer-types
-rw-r--r-- | src/eom-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eom-window.c b/src/eom-window.c index 6c4b5d2..0d008dd 100644 --- a/src/eom-window.c +++ b/src/eom-window.c @@ -4342,7 +4342,7 @@ eom_window_open_editor (GtkAction *action, file = eom_image_get_file (window->priv->image); files = g_list_append (files, file); - g_app_info_launch (app_info, &files, + g_app_info_launch (app_info, files, G_APP_LAUNCH_CONTEXT (context), NULL); g_list_free (files); |