aboutsummaryrefslogtreecommitdiff
path: root/samples/form1-both
diff options
context:
space:
mode:
Diffstat (limited to 'samples/form1-both')
-rwxr-xr-xsamples/form1-both16
1 files changed, 4 insertions, 12 deletions
diff --git a/samples/form1-both b/samples/form1-both
index f571830fc454..36aa560e36bb 100755
--- a/samples/form1-both
+++ b/samples/form1-both
@@ -1,5 +1,5 @@
#! /bin/sh
-# $Id: form1-both,v 1.5 2010/01/13 10:47:35 tom Exp $
+# $Id: form1-both,v 1.8 2020/11/26 00:34:22 tom Exp $
. ./setup-vars
@@ -16,7 +16,7 @@ returncode=0
while test $returncode != 1 && test $returncode != 250
do
exec 3>&1
-value=`$DIALOG --ok-label "Submit" \
+returntext=`$DIALOG --ok-label "Submit" \
--extra-button --help-button \
--backtitle "$backtitle" "$@" \
--form "Here is a possible piece of a configuration program." \
@@ -29,7 +29,7 @@ value=`$DIALOG --ok-label "Submit" \
returncode=$?
exec 3>&-
-show=`echo "$value" |sed -e 's/^/ /'`
+show=`echo "$returntext" |sed -e 's/^/ /'`
case $returncode in
$DIALOG_CANCEL)
@@ -53,16 +53,8 @@ show=`echo "$value" |sed -e 's/^/ /'`
--msgbox "Resulting data:\n\
$show" 10 40
;;
- $DIALOG_HELP)
- echo "Button 2 (Help) pressed."
- exit
- ;;
- $DIALOG_EXTRA)
- echo "Button 3 (Extra) pressed."
- exit
- ;;
*)
- echo "Return code was $returncode"
+ . ./report-button
exit
;;
esac