diff options
author | rbuj <[email protected]> | 2021-10-21 10:05:46 +0200 |
---|---|---|
committer | rbuj <[email protected]> | 2021-12-21 14:01:54 +0100 |
commit | 8b7333ee23775df9c1dce27230f76b3cb6eb4855 (patch) | |
tree | 3ccd4549952c053d213a43f9861b12eeb59a9b98 | |
parent | d04cab0021ffd3a32c5aadee355eab23f01fbd4a (diff) | |
download | eom-8b7333ee23775df9c1dce27230f76b3cb6eb4855.tar.bz2 eom-8b7333ee23775df9c1dce27230f76b3cb6eb4855.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 607b2fb..ccb97cf 100644 --- a/src/eom-window.c +++ b/src/eom-window.c @@ -4343,7 +4343,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); |