summaryrefslogtreecommitdiff
path: root/src/core/procedures
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2008-11-03 14:46:15 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2008-11-03 14:46:15 +0100
commit74dafa4f7bb98a3b629f9b3c76f711803085e14d (patch)
tree544dc960e908493018229a927bb6702bbe950798 /src/core/procedures
parent19135681a6807e8b7df6f91821294f511449dbd2 (diff)
DIALOG is now called _dia_DIALOG
Diffstat (limited to 'src/core/procedures')
-rw-r--r--src/core/procedures/interactive10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/procedures/interactive b/src/core/procedures/interactive
index 21ba2a3..b8d1cb9 100644
--- a/src/core/procedures/interactive
+++ b/src/core/procedures/interactive
@@ -67,7 +67,7 @@ mainmenu()
else
DEFAULT=""
fi
- DIALOG $DEFAULT --title " MAIN MENU " \
+ _dia_DIALOG $DEFAULT --title " MAIN MENU " \
--menu "Use the UP and DOWN arrows to navigate menus. Use TAB to switch between buttons and ENTER to select." 16 55 8 \
"0" "Select Source" \
"1" "Set Clock" \
@@ -83,7 +83,7 @@ mainmenu()
execute worker select_source; ret=$?
if [ $ret -eq 0 -a "$var_PKG_SOURCE_TYPE" = "ftp" ]; then
while true; do
- DIALOG --menu "FTP Installation" 10 35 3 \
+ _dia_DIALOG --menu "FTP Installation" 10 35 3 \
"0" "Setup Network (Make sure the network is ok before continuing" \
"1" "Choose Mirror" \
"2" "Return to Main Menu" 2>$ANSWER
@@ -166,7 +166,7 @@ worker_prepare_disks()
else
DEFAULT=""
fi
- DIALOG $DEFAULT --menu "Prepare Hard Drive" 12 60 5 \
+ _dia_DIALOG $DEFAULT --menu "Prepare Hard Drive" 12 60 5 \
"1" "Auto-Prepare (erases the ENTIRE hard drive)" \
"2" "Partition Hard Drives" \
"3" "Set Filesystem Mountpoints" \
@@ -222,14 +222,14 @@ worker_select_source ()
worker_package_list() {
# step dependencies
if [ $S_SRC -eq 0 ]; then
- DIALOG --msgbox "You must select an installation source!" 0 0
+ _dia_DIALOG --msgbox "You must select an installation source!" 0 0
return 1
fi
# if selection has been done before, warn about loss of input
# and let the user exit gracefully
if [ $S_SELECT -ne 0 ]; then
- DIALOG --yesno "WARNING: Running this stage again will result in the loss of previous package selections.\n\nDo you wish to continue?" 10 50 || return 1
+ _dia_DIALOG --yesno "WARNING: Running this stage again will result in the loss of previous package selections.\n\nDo you wish to continue?" 10 50 || return 1
fi
interactive_select_packages