evince r3214 - in trunk: . shell
- From: carlosgc svn gnome org
- To: svn-commits-list gnome org
- Subject: evince r3214 - in trunk: . shell
- Date: Sat, 4 Oct 2008 17:20:34 +0000 (UTC)
Author: carlosgc
Date: Sat Oct 4 17:20:34 2008
New Revision: 3214
URL: http://svn.gnome.org/viewvc/evince?rev=3214&view=rev
Log:
2008-10-04 Carlos Garcia Campos <carlosgc gnome org>
* shell/ev-window.c: (launch_action):
Use GdkAppLaunchContext when available to launch external
applications.
Modified:
trunk/ChangeLog
trunk/shell/ev-window.c
Modified: trunk/shell/ev-window.c
==============================================================================
--- trunk/shell/ev-window.c (original)
+++ trunk/shell/ev-window.c Sat Oct 4 17:20:34 2008
@@ -4836,6 +4836,7 @@
GAppInfo *app_info;
GFile *file;
GList file_list = {NULL};
+ GAppLaunchContext *context = NULL;
GError *error = NULL;
if (filename == NULL)
@@ -4863,11 +4864,16 @@
return;
}
+
+#if GTK_CHECK_VERSION (2, 14, 0)
+ context = G_APP_LAUNCH_CONTEXT (gdk_app_launch_context_new ());
+ gdk_app_launch_context_set_screen (GDK_APP_LAUNCH_CONTEXT (context),
+ gtk_window_get_screen (GTK_WINDOW (window)));
+ gdk_app_launch_context_set_timestamp (GDK_APP_LAUNCH_CONTEXT (context), GDK_CURRENT_TIME);
+#endif
file_list.data = file;
-
- /* FIXME: should we use a GAppLaunchContext? */
- if (!g_app_info_launch (app_info, &file_list, NULL, &error)) {
+ if (!g_app_info_launch (app_info, &file_list, context, &error)) {
/* FIXME: use ev_window_error_message */
g_warning ("%s", error->message);
g_error_free (error);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]