OSDN Git Service

* library/vartree.itb (constructor): Remove the borderwidth 0
authorkseitz <kseitz>
Fri, 24 Apr 2009 03:38:49 +0000 (03:38 +0000)
committerkseitz <kseitz>
Fri, 24 Apr 2009 03:38:49 +0000 (03:38 +0000)
argument.

gdb/gdbtk/ChangeLog
gdb/gdbtk/library/vartree.itb

index 0a67726..5657876 100644 (file)
@@ -1,5 +1,10 @@
 2009-04-23  Keith Seitz  <keiths@redhat.com>
 
+       * library/vartree.itb (constructor): Remove the borderwidth 0
+       argument.
+
+2009-04-23  Keith Seitz  <keiths@redhat.com>
+
        * library/mempref.itb (build_win): Replace libgui's "Labelledframe"
        with the iwidget's LabeledFrame. Replaced all occurrances.
        * libarary/memwin.itb (create_prefs): Use ManagedWin::open_dlg
index e28733d..4c6a93f 100644 (file)
@@ -1,5 +1,5 @@
 # Variable tree implementation for Insight.
-# Copyright (C) 2002 Red Hat, Inc.
+# Copyright (C) 2002, 2009 Red Hat, Inc.
 #
 # This program is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License (GPL) as published by
@@ -20,7 +20,7 @@ itcl::body  VarTree::constructor {args} {
   
   itk_component add canvas {
     iwidgets::scrolledcanvas $itk_interior.c -autoresize 1 -hscrollmode dynamic -vscrollmode dynamic \
-      -background $::Colors(textbg) -borderwidth 0 -highlightthickness 0
+      -background $::Colors(textbg) -highlightthickness 0
   }
   set c [$itk_component(canvas) childsite]
   pack $itk_component(canvas) -side top -fill both -expand 1