diff options
author | hobbs <hobbs> | 1999-10-01 22:45:11 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-10-01 22:45:11 (GMT) |
commit | 0d9ca17839866584c7545aadbacf87829ce2a7f7 (patch) | |
tree | f089bfc9ef19c8d3f9aa561064694b362df23a52 /library | |
parent | f29a5be23f295f3e213d950ffbbea8ccbc06c8b5 (diff) | |
download | tk-0d9ca17839866584c7545aadbacf87829ce2a7f7.zip tk-0d9ca17839866584c7545aadbacf87829ce2a7f7.tar.gz tk-0d9ca17839866584c7545aadbacf87829ce2a7f7.tar.bz2 |
1999-09-24 Jeff Hobbs <hobbs@scriptics.com>
* */README:
* win/makefile.vc:
* */configure.in:
* generic/tk.h:
* library/tk.tcl: up'd to 8.3a1
* unix/Makefile.in: changed 'mkdir' to 'mkdir -p'
* library/dialog.tcl: changed {Times 18} to {Times 12} for
dialog font.
Diffstat (limited to 'library')
-rw-r--r-- | library/dialog.tcl | 4 | ||||
-rw-r--r-- | library/tk.tcl | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/library/dialog.tcl b/library/dialog.tcl index b46aa1e..148a3e8 100644 --- a/library/dialog.tcl +++ b/library/dialog.tcl @@ -3,7 +3,7 @@ # This file defines the procedure tk_dialog, which creates a dialog # box containing a bitmap, a message, and one or more buttons. # -# RCS: @(#) $Id: dialog.tcl,v 1.5 1999/09/02 17:02:52 hobbs Exp $ +# RCS: @(#) $Id: dialog.tcl,v 1.6 1999/10/01 22:45:19 hobbs Exp $ # # Copyright (c) 1992-1993 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. @@ -68,7 +68,7 @@ proc tk_dialog {w title text bitmap default args} { if {[string equal $tcl_platform(platform) "macintosh"]} { option add *Dialog.msg.font system widgetDefault } else { - option add *Dialog.msg.font {Times 18} widgetDefault + option add *Dialog.msg.font {Times 12} widgetDefault } label $w.msg -justify left -text $text diff --git a/library/tk.tcl b/library/tk.tcl index 7328b8e..b68d31b 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -3,7 +3,7 @@ # Initialization script normally executed in the interpreter for each # Tk-based application. Arranges class bindings for widgets. # -# RCS: @(#) $Id: tk.tcl,v 1.11 1999/09/02 17:02:53 hobbs Exp $ +# RCS: @(#) $Id: tk.tcl,v 1.12 1999/10/01 22:45:19 hobbs Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -14,8 +14,8 @@ # Insist on running with compatible versions of Tcl and Tk. -package require -exact Tk 8.2 -package require -exact Tcl 8.2 +package require -exact Tk 8.3 +package require -exact Tcl 8.3 # Add Tk's directory to the end of the auto-load search path, if it # isn't already on the path: |