diff options
author | Glynn Foster <glynn.foster@sun.com> | 2003-11-12 01:03:20 +0000 |
---|---|---|
committer | Glynn Foster <gman@src.gnome.org> | 2003-11-12 01:03:20 +0000 |
commit | 191ebced874dfb6321832f6e8621f0939ff030a5 (patch) | |
tree | 38f59be5e81fa08c0696d87a45cc8431653a460b | |
parent | Add missing file. (diff) | |
download | zenity-191ebced874dfb6321832f6e8621f0939ff030a5.tar.gz zenity-191ebced874dfb6321832f6e8621f0939ff030a5.tar.bz2 zenity-191ebced874dfb6321832f6e8621f0939ff030a5.zip |
Make sure the gdialog wrapper handles spaces. Patch from Peter Åstrand
2003-11-12 Glynn Foster <glynn.foster@sun.com>
* src/gdialog.in: Make sure the gdialog wrapper
handles spaces. Patch from Peter Åstrand
<astrand@lysator.liu.se>
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | src/gdialog.in | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2003-11-12 Glynn Foster <glynn.foster@sun.com> + + * src/gdialog.in: Make sure the gdialog wrapper + handles spaces. Patch from Peter Åstrand + <astrand@lysator.liu.se> + 2003-10-29 Glynn Foster <glynn.foster@sun.com> * src/zenity.glade: Unmark translation messages, diff --git a/src/gdialog.in b/src/gdialog.in index ff47010d..b2045326 100755 --- a/src/gdialog.in +++ b/src/gdialog.in @@ -227,7 +227,7 @@ ARG: while ($argn < $args) { # an untitled column for the check or radio buttons # and the 'text' arg as a second column header - $command .= "--list $list --column='' --column $element "; + $command .= "--list $list --column='' --column \"$element\" "; # should output be line by line? if ($separator) { @@ -248,7 +248,7 @@ ARG: while ($argn < $args) { while ($argn < $args) { get_arg; - $command .= "NULL $element "; + $command .= "NULL \"$element\" "; $argn += 3; } last ARG; |