diff options
author | Mike Newman <MikeGTN@src.gnome.org> | 2003-05-27 18:00:56 +0000 |
---|---|---|
committer | Mike Newman <MikeGTN@src.gnome.org> | 2003-05-27 18:00:56 +0000 |
commit | 15c5b0f48ee2114b5a9f4ad25da258fc34065320 (patch) | |
tree | 6bf4c2d72e22136a5f5f9fd399313281c2263dbd /src | |
parent | Fix an indentation weirdness in calendar.c (diff) | |
download | zenity-15c5b0f48ee2114b5a9f4ad25da258fc34065320.tar.gz zenity-15c5b0f48ee2114b5a9f4ad25da258fc34065320.tar.bz2 zenity-15c5b0f48ee2114b5a9f4ad25da258fc34065320.zip |
Oops - committed with debugging instrumentation which would confuse scripts!
Diffstat (limited to 'src')
-rw-r--r-- | src/gdialog | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/gdialog b/src/gdialog index 02ac6a91..488ee5a0 100644 --- a/src/gdialog +++ b/src/gdialog @@ -5,14 +5,14 @@ # by Mike Newman <mikegtn@gnome.org> # # This is all, of course, horrible - but it should translate -# most commond gdialog types to zenity equivalents. It will drop +# most commond gdialog types to zenity equivalents. It will mostly drop # the pointless and unused (even by gdialog!) size arguments -# but hopefully will pass all the others. +# but hopefully will translate all the others. # # For testing purposes, I've used a couple of the nautilus scripts # available at http://g-scripts.sourceforge.net - what is sometimes # unclear is what is a gdialog/zenity translation problem, and what is -# a problem with the script +# a problem with the original script my $command = "zenity "; # the command line we build up to execute my $element = ""; # current bit of command line @@ -28,8 +28,6 @@ sub get_arg () { # walk the command line -print $args; - ARG: while ($argn < $args) { get_arg; |