diff options
author | Stu Grossman <grossman@cygnus> | 1994-11-28 18:20:21 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1994-11-28 18:20:21 +0000 |
commit | 04576ab6ccc7fa996ddc18e1d931f36e175deb44 (patch) | |
tree | 037a82f77a035be160c1bf2df1308db4ecfa2393 /gdb/gdbtk.tcl | |
parent | c981300c380ac3a492771e444fb8b519ec5714a3 (diff) | |
download | gdb-04576ab6ccc7fa996ddc18e1d931f36e175deb44.zip gdb-04576ab6ccc7fa996ddc18e1d931f36e175deb44.tar.gz gdb-04576ab6ccc7fa996ddc18e1d931f36e175deb44.tar.bz2 |
* gdbtk.tcl (build_framework): Fix bug with setting window titles.
Diffstat (limited to 'gdb/gdbtk.tcl')
-rw-r--r-- | gdb/gdbtk.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbtk.tcl b/gdb/gdbtk.tcl index 0fb38d9..6ad1735 100644 --- a/gdb/gdbtk.tcl +++ b/gdb/gdbtk.tcl @@ -1318,7 +1318,7 @@ button .files -text Files -command files_command proc build_framework {win {title GDBtk} {label {}}} { toplevel ${win} - wm title .src $title + wm title ${win} $title wm minsize ${win} 1 1 frame ${win}.menubar |