diff options
author | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-08-03 18:27:00 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-08-04 17:10:20 +0800 |
commit | 55c0b12101a314d838aa0ba5c6a6d741063c540f (patch) | |
tree | 108ffb90e7c56adce3d922c7db426f590f1c1561 /src/empathy-main-window.c | |
parent | f27e9f59c9b21d4097a805abe24a769446c2351f (diff) | |
download | gsoc2013-empathy-55c0b12101a314d838aa0ba5c6a6d741063c540f.tar gsoc2013-empathy-55c0b12101a314d838aa0ba5c6a6d741063c540f.tar.gz gsoc2013-empathy-55c0b12101a314d838aa0ba5c6a6d741063c540f.tar.bz2 gsoc2013-empathy-55c0b12101a314d838aa0ba5c6a6d741063c540f.tar.lz gsoc2013-empathy-55c0b12101a314d838aa0ba5c6a6d741063c540f.tar.xz gsoc2013-empathy-55c0b12101a314d838aa0ba5c6a6d741063c540f.tar.zst gsoc2013-empathy-55c0b12101a314d838aa0ba5c6a6d741063c540f.zip |
Factor out empathy_launch_program()
https://bugzilla.gnome.org/show_bug.cgi?id=655884
Diffstat (limited to 'src/empathy-main-window.c')
-rw-r--r-- | src/empathy-main-window.c | 37 |
1 files changed, 1 insertions, 36 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index 4aa720a0b..cbe44d6c1 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -1909,42 +1909,7 @@ static void main_window_help_debug_cb (GtkAction *action, EmpathyMainWindow *window) { - GdkDisplay *display; - GError *error = NULL; - gchar *path; - GAppInfo *app_info; - GdkAppLaunchContext *context = NULL; - - /* Try to run from source directory if possible */ - path = g_build_filename (g_getenv ("EMPATHY_SRCDIR"), "src", - "empathy-debugger", NULL); - - if (!g_file_test (path, G_FILE_TEST_EXISTS)) { - g_free (path); - path = g_build_filename (BIN_DIR, "empathy-debugger", NULL); - } - - app_info = g_app_info_create_from_commandline (path, NULL, 0, &error); - if (app_info == NULL) { - DEBUG ("Failed to create app info: %s", error->message); - g_error_free (error); - goto out; - } - - display = gdk_display_get_default (); - context = gdk_display_get_app_launch_context (display); - - if (!g_app_info_launch (app_info, NULL, (GAppLaunchContext *) context, - &error)) { - g_warning ("Failed to open debug window: %s", error->message); - g_error_free (error); - goto out; - } - -out: - tp_clear_object (&app_info); - tp_clear_object (&context); - g_free (path); + empathy_launch_program (BIN_DIR, "empathy-debugger", NULL); } static void |