ShellApp: Report error when we fail to run an app

https://bugzilla.gnome.org/show_bug.cgi?id=644402
This commit is contained in:
Colin Walters 2011-03-15 18:34:51 -04:00
parent b4f16c4df8
commit 4bf1df0894
2 changed files with 21 additions and 7 deletions

View File

@ -30,6 +30,7 @@ js/ui/workspacesView.js
src/gvc/gvc-mixer-control.c
src/gdmuser/gdm-user.c
src/main.c
src/shell-app.c
src/shell-app-system.c
src/shell-global.c
src/shell-mobile-providers.c

View File

@ -4,6 +4,8 @@
#include <string.h>
#include <glib/gi18n-lib.h>
#include <meta/display.h>
#include "shell-app-private.h"
@ -427,13 +429,24 @@ shell_app_activate (ShellApp *app,
switch (app->state)
{
case SHELL_APP_STATE_STOPPED:
/* TODO sensibly handle this error */
shell_app_info_launch_full (app->info,
0,
NULL,
workspace,
NULL,
NULL);
{
GError *error = NULL;
if (!shell_app_info_launch_full (app->info,
0,
NULL,
workspace,
NULL,
&error))
{
char *msg;
msg = g_strdup_printf (_("Failed to launch '%s'"), shell_app_get_name (app));
shell_global_notify_error (shell_global_get (),
msg,
error->message);
g_free (msg);
g_clear_error (&error);
}
}
break;
case SHELL_APP_STATE_STARTING:
break;