diff options
author | monsta <[email protected]> | 2015-12-22 12:18:22 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2015-12-22 12:18:22 +0300 |
commit | 5c32ef035d8a18d865e8419d0cf2b8d932039b52 (patch) | |
tree | 13f671dc14dc37fa89a6cd2e976fbad0048aa0d5 /src/gs-lock-plug.c | |
parent | 19cfcdd0df1d6a1d1c64b3b8c7d8b183316629bd (diff) | |
download | mate-screensaver-5c32ef035d8a18d865e8419d0cf2b8d932039b52.tar.bz2 mate-screensaver-5c32ef035d8a18d865e8419d0cf2b8d932039b52.tar.xz |
mate_gdk_spawn_command_line_on_screen can be used with any GTK+
Diffstat (limited to 'src/gs-lock-plug.c')
-rw-r--r-- | src/gs-lock-plug.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gs-lock-plug.c b/src/gs-lock-plug.c index af3326b..0660882 100644 --- a/src/gs-lock-plug.c +++ b/src/gs-lock-plug.c @@ -38,11 +38,11 @@ #include <gtk/gtk.h> #include <gio/gio.h> -#if GTK_CHECK_VERSION (3, 0, 0) -#include <gtk/gtkx.h> #define MATE_DESKTOP_USE_UNSTABLE_API #include <libmate-desktop/mate-desktop-utils.h> -#define gdk_spawn_command_line_on_screen mate_gdk_spawn_command_line_on_screen + +#if GTK_CHECK_VERSION (3, 0, 0) +#include <gtk/gtkx.h> #endif #ifdef WITH_KBD_LAYOUT_INDICATOR @@ -220,7 +220,7 @@ do_user_switch (GSLockPlug *plug) MDM_FLEXISERVER_ARGS); error = NULL; - res = gdk_spawn_command_line_on_screen (gdk_screen_get_default (), + res = mate_gdk_spawn_command_line_on_screen (gdk_screen_get_default (), command, &error); @@ -240,7 +240,7 @@ do_user_switch (GSLockPlug *plug) GDM_FLEXISERVER_ARGS); error = NULL; - res = gdk_spawn_command_line_on_screen (gdk_screen_get_default (), + res = mate_gdk_spawn_command_line_on_screen (gdk_screen_get_default (), command, &error); |