-- Added acknowledgement blurb to "build.tk"

This commit is contained in:
dfs
1998-02-16 02:35:00 +00:00
parent 3cd69d3cb4
commit 55e07e7326

View File

@@ -11,7 +11,7 @@
#
#--------------------------------------------------------------
# $Id: build.tk,v 1.3 1998-02-14 03:39:40 dfs Exp $
# $Id: build.tk,v 1.4 1998-02-16 02:35:00 dfs Exp $
# the next line restarts using wish \
exec wish "$0" "$@"
@@ -131,10 +131,14 @@ proc CreateInstallDirDialog { w } {
entry $w.man -width 30
$w.man insert end "/usr/local/man"
text $w.blurb -width 1 -height 5 -wrap word -relief flat
$w.blurb insert end "\n(Tabbed-notebook Tcl code taken from \"Effective Tcl/Tk Programming\" by Mark Harrison and Michael McLennan, Addison-Wesley Professional Computing Series.)"
$w.blurb configure -state disabled
grid $w.binlabel -row 0 -column 0 -sticky e
grid $w.bin -row 0 -column 1 -sticky nsew
grid $w.manlabel -row 1 -column 0 -sticky e
grid $w.man -row 1 -column 1 -sticky nsew
grid $w.blurb - -sticky nsew
}
#***********************************************************************