~bratsche/gdm/gdm-greeter-gtkrc

« back to all changes in this revision

Viewing changes to gui/modules/keymouselistener.c

  • Committer: Bazaar Package Importer
  • Date: 2008-11-06 00:09:01 UTC
  • Revision ID: jamesw@ubuntu.com-20081106000901-l8kwxj7jvlztvwcp
Tags: upstream-ubuntu-2.20.8
ImportĀ upstreamĀ versionĀ 2.20.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
901
901
                        for (act_li = curr_gesture->actions;
902
902
                             act_li != NULL; act_li = act_li->next) {
903
903
                                gchar *action = (gchar *)act_li->data;
904
 
#ifdef HAVE_CTRUN
905
 
                                gchar *ctrun;
906
 
#endif
907
904
 
908
905
                                g_return_val_if_fail (action != NULL, GDK_FILTER_CONTINUE);
909
906
 
910
 
#ifdef HAVE_CTRUN
911
 
                                ctrun = g_strdup_printf (
912
 
                                        "/bin/sh -c \"/usr/bin/ctrun -l child -i none %s\"",
913
 
                                        action);
914
 
                                if (!g_shell_parse_argv (ctrun, NULL, &argv, NULL)) {
915
 
                                        g_free (ctrun);
916
 
                                        continue;
917
 
                                }
918
 
 
919
 
                                g_free (ctrun);
920
 
#else
921
907
                                if (!g_shell_parse_argv (action, NULL, &argv, NULL))
922
908
                                        continue;
923
 
#endif
924
909
 
925
910
                                envp = get_exec_environment (xevent);
926
911