summaryrefslogtreecommitdiff
path: root/src/zenity.h
diff options
context:
space:
mode:
authorLucas Rocha <lucasr@gnome.org>2006-12-02 10:54:45 +0000
committerLucas Almeida Rocha <lucasr@src.gnome.org>2006-12-02 10:54:45 +0000
commit09c4a49800992d979845e3c7a05122b5aa1ceaed (patch)
tree9500db72a1e24b6ab2cdf35da38477849e9e952f /src/zenity.h
parentdon't show cancel button on warning dialog (Fixes bug #324100). Patch from (diff)
downloadzenity-09c4a49800992d979845e3c7a05122b5aa1ceaed.tar.gz
zenity-09c4a49800992d979845e3c7a05122b5aa1ceaed.tar.bz2
zenity-09c4a49800992d979845e3c7a05122b5aa1ceaed.zip
add "auto-kill" option to progress dialog. Now the user can choose whether
2006-12-02 Lucas Rocha <lucasr@gnome.org> * src/zenity.h, src/progress.c, src/option.c: add "auto-kill" option to progress dialog. Now the user can choose whether to kill parent process or not (Fixes bug #310824). Patch from Diego Escalante Urrelo <diego@aureal.com.pe>.
Diffstat (limited to 'src/zenity.h')
-rw-r--r--src/zenity.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zenity.h b/src/zenity.h
index c15f950a..330d317d 100644
--- a/src/zenity.h
+++ b/src/zenity.h
@@ -91,6 +91,7 @@ typedef struct {
gchar *entry_text;
gboolean pulsate;
gboolean autoclose;
+ gboolean autokill;
gdouble percentage;
} ZenityProgressData;
bgstack15