X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fstartupnotify.c;h=4c929e7eaf12c786e31fd10895f5acaef009a4c7;hb=299687110d478a4928932f72031c345b27a01840;hp=83e8c75b0f34723652fe35044b8dbcedba2b2df4;hpb=959fff5e1cda35b0a1569ef323aab3129db3cb1f;p=chaz%2Fopenbox diff --git a/openbox/startupnotify.c b/openbox/startupnotify.c index 83e8c75b..4c929e7e 100644 --- a/openbox/startupnotify.c +++ b/openbox/startupnotify.c @@ -19,6 +19,7 @@ #include "startupnotify.h" #include "gettext.h" +#include "event.h" #include @@ -33,7 +34,7 @@ Time sn_app_started(const gchar *id, const gchar *wmclass) } gboolean sn_get_desktop(gchar *id, guint *desktop) { return FALSE; } void sn_setup_spawn_environment(gchar *program, gchar *name, - gchar *icon_name, gint desktop, Time time) {} + gchar *icon_name, gint desktop) {} void sn_spawn_cancel() {} #else @@ -60,7 +61,7 @@ void sn_startup(gboolean reconfig) if (reconfig) return; /* unset this so we don't pass it on unknowingly */ - unsetenv("DESKTOP_STARTUP_ID"); + putenv("DESKTOP_STARTUP_ID"); sn_display = sn_display_new(ob_display, NULL, NULL); sn_context = sn_monitor_context_new(sn_display, ob_screen, @@ -105,7 +106,7 @@ static SnStartupSequence* sequence_find(const gchar *id) return ret; } -gboolean sn_app_starting() +gboolean sn_app_starting(void) { return sn_waits != NULL; } @@ -228,8 +229,7 @@ static gboolean sn_launch_wait_timeout(gpointer data) } void sn_setup_spawn_environment(gchar *program, gchar *name, - gchar *icon_name, gint desktop, - Time time) + gchar *icon_name, gint desktop) { gchar *desc; const char *id; @@ -243,11 +243,13 @@ void sn_setup_spawn_environment(gchar *program, gchar *name, sn_launcher_context_set_name(sn_launcher, name ? name : program); sn_launcher_context_set_description(sn_launcher, desc); - sn_launcher_context_set_icon_name(sn_launcher, icon_name ? icon_name : program); + sn_launcher_context_set_icon_name(sn_launcher, icon_name ? + icon_name : program); sn_launcher_context_set_binary_name(sn_launcher, program); if (desktop >= 0 && (unsigned) desktop < screen_num_desktops) sn_launcher_context_set_workspace(sn_launcher, (signed) desktop); - sn_launcher_context_initiate(sn_launcher, "openbox", program, time); + sn_launcher_context_initiate(sn_launcher, "openbox", program, + event_curtime); id = sn_launcher_context_get_startup_id(sn_launcher); /* 20 second timeout for apps to start */ @@ -257,12 +259,12 @@ void sn_setup_spawn_environment(gchar *program, gchar *name, g_direct_equal, (GDestroyNotify)sn_launcher_context_unref); - setenv("DESKTOP_STARTUP_ID", id, TRUE); + putenv(g_strdup_printf("DESKTOP_STARTUP_ID=%s", id)); g_free(desc); } -void sn_spawn_cancel() +void sn_spawn_cancel(void) { sn_launcher_context_complete(sn_launcher); }