summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--library/bgerror.tcl7
2 files changed, 11 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 7ab8a75..a193a94 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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"