summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das>2009-04-10 16:31:44 (GMT)
committerdas <das>2009-04-10 16:31:44 (GMT)
commit31a39a76334a12ed604b7a3fc1f1c939251d22cf (patch)
tree0ea819745c826c4d6961ef3841249f10c10254a0
parente86036a308d9a8fd9ad321e73fc66f989543ddda (diff)
downloadtk-31a39a76334a12ed604b7a3fc1f1c939251d22cf.zip
tk-31a39a76334a12ed604b7a3fc1f1c939251d22cf.tar.gz
tk-31a39a76334a12ed604b7a3fc1f1c939251d22cf.tar.bz2
* library/console.tcl (::tk::ConsoleInit): remove redundant TkAqua
Quit menu item.
-rw-r--r--ChangeLog3
-rw-r--r--library/console.tcl7
2 files changed, 5 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 1e1be33..1560077 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2008-04-10 Daniel Steffen <das@users.sourceforge.net>
+ * library/console.tcl (::tk::ConsoleInit): remove redundant TkAqua
+ Quit menu item.
+
* generic/tkPointer.c (Tk_UpdatePointer): use all 5 buttons.
* generic/tkMenu.c (PostProcessEntry): delay call to
diff --git a/library/console.tcl b/library/console.tcl
index 2f009f0..e17b898 100644
--- a/library/console.tcl
+++ b/library/console.tcl
@@ -4,7 +4,7 @@
# can be used by non-unix systems that do not have built-in support
# for shells.
#
-# RCS: @(#) $Id: console.tcl,v 1.41 2009/02/21 10:22:58 patthoyts Exp $
+# RCS: @(#) $Id: console.tcl,v 1.42 2009/04/10 16:31:44 das Exp $
#
# Copyright (c) 1995-1997 Sun Microsystems, Inc.
# Copyright (c) 1998-2000 Ajuba Solutions.
@@ -68,10 +68,7 @@ proc ::tk::ConsoleInit {} {
-command {wm withdraw .}
AmpMenuArgs .menubar.file add command -label [mc "&Clear Console"] \
-command {.console delete 1.0 "promptEnd linestart"}
- if {[tk windowingsystem] eq "aqua"} {
- AmpMenuArgs .menubar.file add command \
- -label [mc &Quit] -command {exit} -accel "Cmd-Q"
- } else {
+ if {[tk windowingsystem] ne "aqua"} {
AmpMenuArgs .menubar.file add command -label [mc E&xit] -command {exit}
}