[Xfce4-commits] r23256 - in libfrap/trunk/libfrap/menu: . tests
Author: jannis Date: 2006-10-01 19:54:23 + (Sun, 01 Oct 2006) New Revision: 23256 Modified: libfrap/trunk/libfrap/menu/ChangeLog libfrap/trunk/libfrap/menu/STATUS libfrap/trunk/libfrap/menu/frap-menu-and-rules.c libfrap/trunk/libfrap/menu/frap-menu-item-pool.c libfrap/trunk/libfrap/menu/frap-menu-not-rules.c libfrap/trunk/libfrap/menu/frap-menu-or-rules.c libfrap/trunk/libfrap/menu/tests/test-and-rules.c libfrap/trunk/libfrap/menu/tests/test-display-root-menu.c libfrap/trunk/libfrap/menu/tests/test-not-rules.c libfrap/trunk/libfrap/menu/tests/test-or-rules.c Log: * frap-menu-or-rules.c, frap-menu-and-rules.c, frap-menu-not-rules.c: Improve match functions and implement desktop file id matching. * Fix several compiler warnings in some of the files. Modified: libfrap/trunk/libfrap/menu/ChangeLog === --- libfrap/trunk/libfrap/menu/ChangeLog2006-10-01 13:49:56 UTC (rev 23255) +++ libfrap/trunk/libfrap/menu/ChangeLog2006-10-01 19:54:23 UTC (rev 23256) @@ -1,3 +1,9 @@ +2006-10-01 Jannis Pohlmann <[EMAIL PROTECTED]> + + * frap-menu-or-rules.c, frap-menu-and-rules.c, frap-menu-not-rules.c: + Improve match functions and implement desktop file id matching. + * Fix several compiler warnings in some of the files. + 2006-09-30 Jannis Pohlmann <[EMAIL PROTECTED]> * STATUS: Status updated. Modified: libfrap/trunk/libfrap/menu/STATUS === --- libfrap/trunk/libfrap/menu/STATUS 2006-10-01 13:49:56 UTC (rev 23255) +++ libfrap/trunk/libfrap/menu/STATUS 2006-10-01 19:54:23 UTC (rev 23256) @@ -46,11 +46,8 @@ [x] - [-] + [x] -TODO: Implement desktop-file id comparison in the match methods -of all rules. - [x] [ ] Modified: libfrap/trunk/libfrap/menu/frap-menu-and-rules.c === --- libfrap/trunk/libfrap/menu/frap-menu-and-rules.c2006-10-01 13:49:56 UTC (rev 23255) +++ libfrap/trunk/libfrap/menu/frap-menu-and-rules.c2006-10-01 19:54:23 UTC (rev 23256) @@ -130,23 +130,22 @@ frap_menu_and_rules_match (FrapMenuStandardRules *rules, FrapMenuItem *item) { - GList *category; GList *iter; g_return_val_if_fail (FRAP_IS_MENU_STANDARD_RULES (rules), FALSE); g_return_val_if_fail (FRAP_IS_MENU_ITEM (item), FALSE); - /* Compare item filename against filename rules */ - /* TODO This should be a match against the Desktop-File Id. It's not yet sure - * how this will be modelled in FrapMenu! */ + /* Compare desktop id's */ + for (iter = rules->filenames; iter != NULL; iter = g_list_next (iter)) +{ + if (g_utf8_collate (frap_menu_item_get_desktop_id (item), iter->data) != 0) +return FALSE; +} - category = rules->categories; - while (category != NULL) + for (iter = rules->categories; iter != NULL; iter = g_list_next (iter)) { - if (!g_list_find_custom (frap_menu_item_get_categories (item), category->data, g_utf8_collate)) + if (!g_list_find_custom (frap_menu_item_get_categories (item), iter->data, (GCompareFunc) g_utf8_collate)) return FALSE; - - category = g_list_next (category); } /* Match item against nested rules */ @@ -154,8 +153,6 @@ { if (!frap_menu_rules_match (FRAP_MENU_RULES (iter->data), item)) return FALSE; - - category = g_list_next (category); } return TRUE; Modified: libfrap/trunk/libfrap/menu/frap-menu-item-pool.c === --- libfrap/trunk/libfrap/menu/frap-menu-item-pool.c2006-10-01 13:49:56 UTC (rev 23255) +++ libfrap/trunk/libfrap/menu/frap-menu-item-pool.c2006-10-01 19:54:23 UTC (rev 23256) @@ -191,7 +191,7 @@ g_return_if_fail (FRAP_IS_MENU_ITEM_POOL (pool)); /* If rules are empty, remove all items */ - if (G_UNLIKELY (g_list_length (rules) == 0)) + if (G_UNLIKELY (g_slist_length (rules) == 0)) g_hash_table_remove_all (pool->priv->items); else { Modified: libfrap/trunk/libfrap/menu/frap-menu-not-rules.c === --- libfrap/trunk/libfrap/menu/frap-menu-not-rules.c2006-10-01 13:49:56 UTC (rev 23255) +++ libfrap/trunk/libfrap/menu/frap-menu-not-rules.c2006-10-01 19:54:23 UTC (rev 23256) @@ -130,24 +130,23 @@ frap_menu_not_rules_match (FrapMenuStandardRules *rules, FrapMenuItem *item) { - GList*category; GList*iter; gboolean matches = TRUE; g_return_val_if_fail (FRAP_IS_MENU_STANDARD_RULES (rules), FALSE); g_return_val_if_fail (FRAP_IS_MENU_ITEM (item), FALSE); - /* Compare item filename against filename rules */ - /* TODO This should be a match again
[Xfce4-commits] r23255 - in thunar/trunk: . thunar
Author: benny Date: 2006-10-01 13:49:56 + (Sun, 01 Oct 2006) New Revision: 23255 Modified: thunar/trunk/ChangeLog thunar/trunk/thunar/thunar-properties-dialog.c Log: 2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> * thunar/thunar-properties-dialog.c(thunar_properties_dialog_init): Use an input-only window to trap mouse events for mime type tooltip. Modified: thunar/trunk/ChangeLog === --- thunar/trunk/ChangeLog 2006-10-01 13:11:39 UTC (rev 23254) +++ thunar/trunk/ChangeLog 2006-10-01 13:49:56 UTC (rev 23255) @@ -1,5 +1,10 @@ 2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> + * thunar/thunar-properties-dialog.c(thunar_properties_dialog_init): + Use an input-only window to trap mouse events for mime type tooltip. + +2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> + * thunar/thunar-properties-dialog.c: Display the real mime type as tooltip for the "Kind" label. Bug #2369. Modified: thunar/trunk/thunar/thunar-properties-dialog.c === --- thunar/trunk/thunar/thunar-properties-dialog.c 2006-10-01 13:11:39 UTC (rev 23254) +++ thunar/trunk/thunar/thunar-properties-dialog.c 2006-10-01 13:49:56 UTC (rev 23255) @@ -306,6 +306,8 @@ gtk_widget_show (label); dialog->kind_ebox = gtk_event_box_new (); + gtk_event_box_set_above_child (GTK_EVENT_BOX (dialog->kind_ebox), TRUE); + gtk_event_box_set_visible_window (GTK_EVENT_BOX (dialog->kind_ebox), FALSE); exo_binding_new (G_OBJECT (dialog->kind_ebox), "visible", G_OBJECT (label), "visible"); gtk_table_attach (GTK_TABLE (table), dialog->kind_ebox, 1, 2, row, row + 1, GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 3); gtk_widget_show (dialog->kind_ebox); ___ Xfce4-commits mailing list Xfce4-commits@xfce.org http://foo-projects.org/mailman/listinfo/xfce4-commits
[Xfce4-commits] r23254 - in thunar/trunk: . thunar
Author: benny Date: 2006-10-01 13:11:39 + (Sun, 01 Oct 2006) New Revision: 23254 Modified: thunar/trunk/ChangeLog thunar/trunk/thunar/thunar-properties-dialog.c Log: 2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> * thunar/thunar-properties-dialog.c: Display the real mime type as tooltip for the "Kind" label. Bug #2369. Modified: thunar/trunk/ChangeLog === --- thunar/trunk/ChangeLog 2006-10-01 13:05:04 UTC (rev 23253) +++ thunar/trunk/ChangeLog 2006-10-01 13:11:39 UTC (rev 23254) @@ -1,5 +1,10 @@ 2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> + * thunar/thunar-properties-dialog.c: Display the real mime type as + tooltip for the "Kind" label. Bug #2369. + +2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> + * thunar/thunar-standard-view.c (thunar_standard_view_set_selected_files): Place the cursor on the first selected file. Bug #2368. Modified: thunar/trunk/thunar/thunar-properties-dialog.c === --- thunar/trunk/thunar/thunar-properties-dialog.c 2006-10-01 13:05:04 UTC (rev 23253) +++ thunar/trunk/thunar/thunar-properties-dialog.c 2006-10-01 13:11:39 UTC (rev 23254) @@ -35,6 +35,7 @@ #include #include #include +#include #include #include #include @@ -112,6 +113,7 @@ GtkWidget *icon_button; GtkWidget *icon_image; GtkWidget *name_entry; + GtkWidget *kind_ebox; GtkWidget *kind_label; GtkWidget *openwith_chooser; GtkWidget *link_label; @@ -303,11 +305,15 @@ gtk_table_attach (GTK_TABLE (table), label, 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 0, 3); gtk_widget_show (label); + dialog->kind_ebox = gtk_event_box_new (); + exo_binding_new (G_OBJECT (dialog->kind_ebox), "visible", G_OBJECT (label), "visible"); + gtk_table_attach (GTK_TABLE (table), dialog->kind_ebox, 1, 2, row, row + 1, GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 3); + gtk_widget_show (dialog->kind_ebox); + dialog->kind_label = g_object_new (GTK_TYPE_LABEL, "xalign", 0.0f, NULL); gtk_label_set_selectable (GTK_LABEL (dialog->kind_label), TRUE); gtk_label_set_ellipsize (GTK_LABEL (dialog->kind_label), PANGO_ELLIPSIZE_END); - exo_binding_new (G_OBJECT (dialog->kind_label), "visible", G_OBJECT (label), "visible"); - gtk_table_attach (GTK_TABLE (table), dialog->kind_label, 1, 2, row, row + 1, GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 3); + gtk_container_add (GTK_CONTAINER (dialog->kind_ebox), dialog->kind_label); gtk_widget_show (dialog->kind_label); ++row; @@ -839,6 +845,7 @@ str = g_strdup_printf (_("link to %s"), thunar_vfs_mime_info_get_comment (info)); else str = g_strdup (thunar_vfs_mime_info_get_comment (info)); + thunar_gtk_widget_set_tooltip (dialog->kind_ebox, thunar_vfs_mime_info_get_name (info)); gtk_label_set_text (GTK_LABEL (dialog->kind_label), str); g_free (str); ___ Xfce4-commits mailing list Xfce4-commits@xfce.org http://foo-projects.org/mailman/listinfo/xfce4-commits
[Xfce4-commits] r23252 - in thunar/trunk: . thunar
Author: benny Date: 2006-10-01 12:22:19 + (Sun, 01 Oct 2006) New Revision: 23252 Modified: thunar/trunk/ChangeLog thunar/trunk/thunar/thunar-standard-view.c Log: 2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> * thunar/thunar-standard-view.c (thunar_standard_view_set_selected_files): Place the cursor on the first selected file. Bug #2368. Modified: thunar/trunk/ChangeLog === --- thunar/trunk/ChangeLog 2006-10-01 11:19:30 UTC (rev 23251) +++ thunar/trunk/ChangeLog 2006-10-01 12:22:19 UTC (rev 23252) @@ -1,5 +1,11 @@ 2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> + * thunar/thunar-standard-view.c + (thunar_standard_view_set_selected_files): Place the cursor on the + first selected file. Bug #2368. + +2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> + * configure.in.in: Depend on exo 0.3.1.11 because thunar-uca requires exo-open to support the --working-directory switch. Modified: thunar/trunk/thunar/thunar-standard-view.c === --- thunar/trunk/thunar/thunar-standard-view.c 2006-10-01 11:19:30 UTC (rev 23251) +++ thunar/trunk/thunar/thunar-standard-view.c 2006-10-01 12:22:19 UTC (rev 23252) @@ -1007,13 +1007,20 @@ paths = thunar_list_model_get_paths_for_files (standard_view->model, selected_files); if (G_LIKELY (paths != NULL)) { - /* select the given tree paths */ + /* determine the first path */ for (first_path = paths->data, lp = paths; lp != NULL; lp = lp->next) { /* check if this path is located before the current first_path */ if (gtk_tree_path_compare (lp->data, first_path) < 0) first_path = lp->data; +} + /* place the cursor on the first selected path (must be first for GtkTreeView) */ + (*THUNAR_STANDARD_VIEW_GET_CLASS (standard_view)->set_cursor) (standard_view, first_path, FALSE); + + /* select the given tree paths paths */ + for (first_path = paths->data, lp = paths; lp != NULL; lp = lp->next) +{ /* select the path */ (*THUNAR_STANDARD_VIEW_GET_CLASS (standard_view)->select_path) (standard_view, lp->data); } ___ Xfce4-commits mailing list Xfce4-commits@xfce.org http://foo-projects.org/mailman/listinfo/xfce4-commits
[Xfce4-commits] r23251 - in terminal/trunk: . terminal
Author: benny Date: 2006-10-01 11:19:30 + (Sun, 01 Oct 2006) New Revision: 23251 Modified: terminal/trunk/ChangeLog terminal/trunk/configure.in.in terminal/trunk/terminal/main.c Log: 2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> * configure.in.in, terminal/main.c(main): Ignore SIGPIPE. Bug #2349. Modified: terminal/trunk/ChangeLog === --- terminal/trunk/ChangeLog2006-10-01 11:07:17 UTC (rev 23250) +++ terminal/trunk/ChangeLog2006-10-01 11:19:30 UTC (rev 23251) @@ -1,3 +1,7 @@ +2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> + + * configure.in.in, terminal/main.c(main): Ignore SIGPIPE. Bug #2349. + 2006-09-10 Benedikt Meurer <[EMAIL PROTECTED]> * terminal/terminal-widget.c(terminal_widget_init): Accept drops from Modified: terminal/trunk/configure.in.in === --- terminal/trunk/configure.in.in 2006-10-01 11:07:17 UTC (rev 23250) +++ terminal/trunk/configure.in.in 2006-10-01 11:19:30 UTC (rev 23251) @@ -65,7 +65,7 @@ dnl ** dnl *** Check for standard headers *** dnl ** -AC_CHECK_HEADERS([ctype.h errno.h limits.h pwd.h time.h]) +AC_CHECK_HEADERS([ctype.h errno.h limits.h pwd.h signal.h time.h]) dnl ** dnl *** Check for i18n support *** Modified: terminal/trunk/terminal/main.c === --- terminal/trunk/terminal/main.c 2006-10-01 11:07:17 UTC (rev 23250) +++ terminal/trunk/terminal/main.c 2006-10-01 11:19:30 UTC (rev 23251) @@ -23,6 +23,9 @@ #include #endif +#ifdef HAVE_SIGNAL_H +#include +#endif #include #include @@ -130,6 +133,9 @@ gint nargc; gint n; + /* install required signal handlers */ + signal (SIGPIPE, SIG_IGN); + xfce_textdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR, "UTF-8"); g_set_application_name (_("Terminal")); ___ Xfce4-commits mailing list Xfce4-commits@xfce.org http://foo-projects.org/mailman/listinfo/xfce4-commits
[Xfce4-commits] r23250 - in libxfce4mcs/trunk: . docs docs/tmpl examples libxfce4mcs
Author: benny Date: 2006-10-01 11:07:17 + (Sun, 01 Oct 2006) New Revision: 23250 Added: libxfce4mcs/trunk/configure.in.in Removed: libxfce4mcs/trunk/configure.ac Modified: libxfce4mcs/trunk/ libxfce4mcs/trunk/Makefile.am libxfce4mcs/trunk/autogen.sh libxfce4mcs/trunk/docs/Makefile.am libxfce4mcs/trunk/docs/libxfce4mcs-docs.sgml libxfce4mcs/trunk/docs/tmpl/mcs-channel.sgml libxfce4mcs/trunk/docs/tmpl/mcs-client.sgml libxfce4mcs/trunk/docs/tmpl/mcs-common.sgml libxfce4mcs/trunk/docs/tmpl/mcs-manager.sgml libxfce4mcs/trunk/docs/version.xml.in libxfce4mcs/trunk/examples/testclient.c libxfce4mcs/trunk/libxfce4mcs/Makefile.am libxfce4mcs/trunk/libxfce4mcs/mcs-channel.c libxfce4mcs/trunk/libxfce4mcs/mcs-channel.h libxfce4mcs/trunk/libxfce4mcs/mcs-client-enum-types.c libxfce4mcs/trunk/libxfce4mcs/mcs-client-enum-types.h libxfce4mcs/trunk/libxfce4mcs/mcs-client.c libxfce4mcs/trunk/libxfce4mcs/mcs-client.h libxfce4mcs/trunk/libxfce4mcs/mcs-common.c libxfce4mcs/trunk/libxfce4mcs/mcs-common.h libxfce4mcs/trunk/libxfce4mcs/mcs-manager.c libxfce4mcs/trunk/libxfce4mcs/mcs-manager.h Log: Update the build framework. Properly link with gobject. Bug #2330. Property changes on: libxfce4mcs/trunk ___ Name: svn:ignore - Makefile autom4te.cache config.h config.log config.status configure.lineno libtool libxfce4mcs.spec stamp-h1 Makefile.in aclocal.m4 compile config.guess config.h.in config.sub configure depcomp gtk-doc.make install-sh ltmain.sh missing + Makefile autom4te.cache config.h config.log config.status configure.in configure.lineno libtool libxfce4mcs.spec stamp-h1 Makefile.in aclocal.m4 compile config.guess config.h.in config.sub configure depcomp gtk-doc.make install-sh ltmain.sh missing Modified: libxfce4mcs/trunk/Makefile.am === --- libxfce4mcs/trunk/Makefile.am 2006-10-01 10:43:22 UTC (rev 23249) +++ libxfce4mcs/trunk/Makefile.am 2006-10-01 11:07:17 UTC (rev 23250) @@ -4,10 +4,6 @@ libxfce4mcs \ docs -AUTOMAKE_OPTIONS = \ - 1.8 \ - dist-bzip2 - distclean-local: rm -rf libxfce4mcs.spec *.cache *~ @@ -26,8 +22,7 @@ gtk-doc.make\ libxfce4mcs.spec -ACLOCAL_AMFLAGS = -I m4 +DISTCHECK_CONFIGURE_FLAGS =\ + --enable-gtk-doc -DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc - # vi:set ts=8 sw=8 noet ai nocindent syntax=automake: Property changes on: libxfce4mcs/trunk/Makefile.am ___ Name: svn:keywords - Author Date Id Revision + Author Date Id Rev Modified: libxfce4mcs/trunk/autogen.sh === --- libxfce4mcs/trunk/autogen.sh2006-10-01 10:43:22 UTC (rev 23249) +++ libxfce4mcs/trunk/autogen.sh2006-10-01 11:07:17 UTC (rev 23250) @@ -2,7 +2,7 @@ # # $Id$ # -# Copyright (c) 2002-2005 +# Copyright (c) 2002-2006 # The Xfce development team. All rights reserved. # # Written for Xfce by Benedikt Meurer <[EMAIL PROTECTED]>. @@ -18,6 +18,11 @@ exit 1 } +# substitute revision and linguas +revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf "%05d\n", $2}'` +sed -e "s/@REVISION@/${revision}/g" \ +< "configure.in.in" > "configure.in" + exec xdt-autogen $@ # vi:set ts=2 sw=2 et ai: Property changes on: libxfce4mcs/trunk/autogen.sh ___ Name: svn:keywords - Author Date Id Revision + Author Date Id Rev Deleted: libxfce4mcs/trunk/configure.ac Copied: libxfce4mcs/trunk/configure.in.in (from rev 23249, libxfce4mcs/trunk/configure.ac) === --- libxfce4mcs/trunk/configure.in.in (rev 0) +++ libxfce4mcs/trunk/configure.in.in 2006-10-01 11:07:17 UTC (rev 23250) @@ -0,0 +1,215 @@ +dnl $Id$ +dnl +dnl Copyright (c) 2002-2006 +dnl The Xfce development team. All rights reserved. +dnl +dnl Written for Xfce by Benedikt Meurer <[EMAIL PROTECTED]>, Jasper +dnl Huijsmans <[EMAIL PROTECTED]> and Olivier Fourdan <[EMAIL PROTECTED]>. +dnl Based on the xsettings sample implementation by Owen Taylor. +dnl + +dnl Version information +m4_define([libxfce4mcs_verinfo], [3:1:0]) +m4_define([libxfce4mcs_version_major], [4]) +m4_define([libxfce4mcs_version_minor], [3]) +m4_define([libxfce4mcs_version_micro], [99]) +m4_define([libxfce4mcs_version_nano], [1]) dnl leave this empty to have no nano version +m4_define([libxfce4mcs_version_build], [EMAIL PROTECTED]@]) +m4_define(
[Xfce4-commits] r23249 - thunar/trunk
Author: benny Date: 2006-10-01 10:43:22 + (Sun, 01 Oct 2006) New Revision: 23249 Modified: thunar/trunk/ChangeLog thunar/trunk/configure.in.in Log: 2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> * configure.in.in: Depend on exo 0.3.1.11 because thunar-uca requires exo-open to support the --working-directory switch. Modified: thunar/trunk/ChangeLog === --- thunar/trunk/ChangeLog 2006-10-01 10:41:21 UTC (rev 23248) +++ thunar/trunk/ChangeLog 2006-10-01 10:43:22 UTC (rev 23249) @@ -1,3 +1,8 @@ +2006-10-01 Benedikt Meurer <[EMAIL PROTECTED]> + + * configure.in.in: Depend on exo 0.3.1.11 because thunar-uca requires + exo-open to support the --working-directory switch. + 2006-09-21 Benedikt Meurer <[EMAIL PROTECTED]> * thunar/thunar-dbus-client.c, thunar/thunar-dbus-service.c: Fix build Modified: thunar/trunk/configure.in.in === --- thunar/trunk/configure.in.in2006-10-01 10:41:21 UTC (rev 23248) +++ thunar/trunk/configure.in.in2006-10-01 10:43:22 UTC (rev 23249) @@ -144,7 +144,7 @@ dnl *** dnl *** Check for required packages *** dnl *** -XDT_CHECK_PACKAGE([EXO], [exo-0.3], [0.3.1.10]) +XDT_CHECK_PACKAGE([EXO], [exo-0.3], [0.3.1.11]) XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.6.4]) XDT_CHECK_PACKAGE([GTHREAD], [gthread-2.0], [2.6.4]) XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.6.0]) ___ Xfce4-commits mailing list Xfce4-commits@xfce.org http://foo-projects.org/mailman/listinfo/xfce4-commits
[Xfce4-commits] r23248 - xfce-utils/trunk/scripts
Author: benny Date: 2006-10-01 10:41:21 + (Sun, 01 Oct 2006) New Revision: 23248 Modified: xfce-utils/trunk/scripts/xfterm4.in Log: Apply patch from Mike Massonnet <[EMAIL PROTECTED]> to properly escape the command. Bug #1100. Modified: xfce-utils/trunk/scripts/xfterm4.in === --- xfce-utils/trunk/scripts/xfterm4.in 2006-10-01 05:43:26 UTC (rev 23247) +++ xfce-utils/trunk/scripts/xfterm4.in 2006-10-01 10:41:21 UTC (rev 23248) @@ -94,7 +94,7 @@ # Note that you cannot feed this script with a text file which # contains spaces in its name and/or path if your $TERMCMD = powershell if [ x"$TITLE" = x"" -o x"$EXEC" = x"" ]; then - exec $TERMCMD $ESTRING + exec $TERMCMD "$ESTRING" elif [ "$TERMCMD" = "powershell" ]; then exec $TERMCMD $TITLE"$TSTRING" $EXEC"$ESTRING $MSTRING" elif [ "x$MSTRING" = "x" ]; then ___ Xfce4-commits mailing list Xfce4-commits@xfce.org http://foo-projects.org/mailman/listinfo/xfce4-commits