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 | |
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
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | library/bgerror.tcl | 7 |
2 files changed, 11 insertions, 7 deletions
@@ -1,8 +1,13 @@ +2006-06-21 Jeff Hobbs <jeffh@ActiveState.com> + + * library/bgerror.tcl (::tk::dialog::error::bgerror): remove a + couple of unnecessary hardcoded options + 2006-06-14 Don Porter <dgp@users.sourceforge.net> - * generic/tkScale.c: Revised variable writing logic to account - for [scale]'s design that it deals with its value as a formatted - string, and not as a double. [Bug 891141]. + * generic/tkScale.c: Revised variable writing logic to account + for [scale]'s design that it deals with its value as a formatted + string, and not as a double. [Bug 891141]. 2006-06-14 Daniel Steffen <das@users.sourceforge.net> 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" |