diff options
author | hobbs <hobbs> | 2006-06-22 00:38:16 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2006-06-22 00:38:16 (GMT) |
commit | ac0ac5ec7d7213c10d5318183fdd1ed073df12b0 (patch) | |
tree | aaf07244b5ef31d472030fad6a4c94a52e749101 /library | |
parent | a0ca7f9cc2bd7054e937588cd9a1adb73d163fe0 (diff) | |
download | tk-ac0ac5ec7d7213c10d5318183fdd1ed073df12b0.zip tk-ac0ac5ec7d7213c10d5318183fdd1ed073df12b0.tar.gz tk-ac0ac5ec7d7213c10d5318183fdd1ed073df12b0.tar.bz2 |
* library/bgerror.tcl (::tk::dialog::error::bgerror): remove a
couple of unnecessary hardcoded options
Diffstat (limited to 'library')
-rw-r--r-- | library/bgerror.tcl | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/library/bgerror.tcl b/library/bgerror.tcl index d926269..30f0573 100644 --- a/library/bgerror.tcl +++ b/library/bgerror.tcl @@ -9,8 +9,8 @@ # Copyright (c) 1998-2000 by Ajuba Solutions. # All rights reserved. # -# RCS: @(#) $Id: bgerror.tcl,v 1.31 2006/01/31 21:39:29 dkf Exp $ -# $Id: bgerror.tcl,v 1.31 2006/01/31 21:39:29 dkf Exp $ +# RCS: @(#) $Id: bgerror.tcl,v 1.32 2006/06/22 00:38:16 hobbs Exp $ +# $Id: bgerror.tcl,v 1.32 2006/06/22 00:38:16 hobbs Exp $ namespace eval ::tk::dialog::error { namespace import -force ::tk::msgcat::* @@ -153,7 +153,6 @@ proc ::tk::dialog::error::bgerror err { set W [frame $w.top.info] text $W.text \ - -bd 2 \ -yscrollcommand [list $W.scroll set]\ -setgrid true \ -width 40 \ @@ -163,7 +162,7 @@ proc ::tk::dialog::error::bgerror err { -highlightthickness $textHilight \ -wrap char - scrollbar $W.scroll -relief sunken -command [list $W.text yview] + scrollbar $W.scroll -command [list $W.text yview] pack $W.scroll -side right -fill y pack $W.text -side left -expand yes -fill both $W.text insert 0.0 "$err\n$info" |