From 5706c595970bc76e11feb56ed56c190452c076d6 Mon Sep 17 00:00:00 2001 From: Monsta Date: Sat, 10 Jan 2015 13:20:30 +0300 Subject: use mate_gdk_spawn_command_line_on_screen like other MATE apps do Closes https://github.com/mate-desktop/caja/pull/370 --- src/caja-window-menus.c | 34 ++++++++-------------------------- 1 file changed, 8 insertions(+), 26 deletions(-) (limited to 'src/caja-window-menus.c') diff --git a/src/caja-window-menus.c b/src/caja-window-menus.c index 2fc0d640..368fd508 100644 --- a/src/caja-window-menus.c +++ b/src/caja-window-menus.c @@ -43,7 +43,6 @@ #include #include #include -#include #include #include #include @@ -55,6 +54,11 @@ #include #include #include + +#define MATE_DESKTOP_USE_UNSTABLE_API +#include +#include + #include #define MENU_PATH_EXTENSION_ACTIONS "/MenuBar/File/Extension Actions" @@ -576,31 +580,9 @@ action_caja_manual_callback (GtkAction *action, if (CAJA_IS_DESKTOP_WINDOW (window)) { -#if GTK_CHECK_VERSION (3, 0, 0) - GdkScreen *screen; - GdkAppLaunchContext *launch_context; - GAppInfo *app_info = NULL; - app_info = g_app_info_create_from_commandline ("mate-help", - NULL, - G_APP_INFO_CREATE_NONE, - &error); - if (error == NULL) - { - screen = gtk_window_get_screen(GTK_WINDOW(window)); - launch_context = gdk_app_launch_context_new (); - gdk_app_launch_context_set_screen (launch_context, screen); - g_app_info_launch (app_info, NULL, G_APP_LAUNCH_CONTEXT (launch_context), &error); - g_object_unref (launch_context); - } - if (app_info != NULL) - g_object_unref (app_info); -#else -#if GTK_CHECK_VERSION (2, 24, 0) - gdk_spawn_command_line_on_screen(gtk_window_get_screen(GTK_WINDOW(window)), "mate-help", &error); -#else - g_spawn_command_line_async("mate-help", &error); -#endif -#endif + mate_gdk_spawn_command_line_on_screen(gtk_window_get_screen(GTK_WINDOW(window)), + "mate-help", + &error); } else { -- cgit v1.2.1