svn commit: r251979 - head/usr.sbin/bsdconfig/timezone
Devin Teske
dteske at FreeBSD.org
Wed Jun 19 00:09:21 UTC 2013
Author: dteske
Date: Wed Jun 19 00:09:21 2013
New Revision: 251979
URL: http://svnweb.freebsd.org/changeset/base/251979
Log:
Take advantage of newly updated f_dialog_{yesno,noyes}() functions from
SVN r251977 (adding an $hline parameter).
Modified:
head/usr.sbin/bsdconfig/timezone/timezone
Modified: head/usr.sbin/bsdconfig/timezone/timezone
==============================================================================
--- head/usr.sbin/bsdconfig/timezone/timezone Wed Jun 19 00:08:29 2013 (r251978)
+++ head/usr.sbin/bsdconfig/timezone/timezone Wed Jun 19 00:09:21 2013 (r251979)
@@ -244,29 +244,11 @@ if [ $# -ge 1 ]; then
default="$1"
f_dialog_title "$msg_default_zone_provided"
- title="$DIALOG_TITLE"
- btitle="$DIALOG_BACKTITLE"
- f_dialog_title_restore
msg=$( printf "\n$msg_use_default_zone" "$default" )
- f_dialog_buttonbox_size height width "$title" "$btitle" "$msg"
-
- if [ "$USE_XDIALOG" ]; then
- eval $DIALOG \
- --title \"\$title\" \
- --backtitle \"\$btitle\" \
- --ok-label \"\$msg_yes\" \
- --cancel-label \"\$msg_no\" \
- --yesno \"\$msg\" $height $width
- result=$?
- else
- eval $DIALOG \
- --title \"\$title\" \
- --backtitle \"\$btitle\" \
- --yes-label \"\$msg_yes\" \
- --no-label \"\$msg_no\" \
- --yesno \"\$msg\" $height $width
- result=$?
- fi
+ hline=
+ f_dialog_yesno "$msg" "$hline"
+ result=$?
+ f_dialog_title_restore
if [ $result -eq 0 ]; then
# User chose YES
More information about the svn-src-head
mailing list