summaryrefslogtreecommitdiffstats
path: root/library/bgerror.tcl
diff options
context:
space:
mode:
authorhobbs <hobbs>2006-06-22 00:37:01 (GMT)
committerhobbs <hobbs>2006-06-22 00:37:01 (GMT)
commita1775f377415ebcbf6f73bf6032b9c03fb72fdbb (patch)
tree85be79a3e88368394dc8211af17e2b31f1ebf659 /library/bgerror.tcl
parentb97b3e185c93279a2fc484e83e4229457ebe3859 (diff)
downloadtk-a1775f377415ebcbf6f73bf6032b9c03fb72fdbb.zip
tk-a1775f377415ebcbf6f73bf6032b9c03fb72fdbb.tar.gz
tk-a1775f377415ebcbf6f73bf6032b9c03fb72fdbb.tar.bz2
* library/bgerror.tcl (::tk::dialog::error::bgerror): remove a
couple of unnecessary hardcoded options
Diffstat (limited to 'library/bgerror.tcl')
-rw-r--r--library/bgerror.tcl7
1 files changed, 3 insertions, 4 deletions
diff --git a/library/bgerror.tcl b/library/bgerror.tcl
index c154961..619a240 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.23.2.5 2006/03/11 22:50:51 dkf Exp $
-# $Id: bgerror.tcl,v 1.23.2.5 2006/03/11 22:50:51 dkf Exp $
+# RCS: @(#) $Id: bgerror.tcl,v 1.23.2.6 2006/06/22 00:37:01 hobbs Exp $
+# $Id: bgerror.tcl,v 1.23.2.6 2006/06/22 00:37:01 hobbs Exp $
namespace eval ::tk::dialog::error {
namespace import -force ::tk::msgcat::*
@@ -155,7 +155,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 \
@@ -165,7 +164,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"