diff options
author | jenglish <jenglish@flightlab.com> | 2006-11-24 18:04:14 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2006-11-24 18:04:14 (GMT) |
commit | a3220fdf64e35fe118d44af78a8d9582b416fbd7 (patch) | |
tree | 5b155465341298f1a6a698db16a5c8cd767801a4 /library/ttk/ttk.tcl | |
parent | 1f9a3b07076ff41b7ee08baa31e992abc40687cc (diff) | |
download | tk-a3220fdf64e35fe118d44af78a8d9582b416fbd7.zip tk-a3220fdf64e35fe118d44af78a8d9582b416fbd7.tar.gz tk-a3220fdf64e35fe118d44af78a8d9582b416fbd7.tar.bz2 |
* library/ttk/altTheme.tcl, library/ttk/clamTheme.tcl,
library/ttk/defaults.tcl, library/ttk/winTheme.tcl,
library/ttk/xpTheme.tcl: explicitly specify -anchor w on TMenubutton
* tests/ttk/entry.test: Fixed font dependency; test entry-3.2
should work on all platforms now.
* library/classicTheme.tcl: Don't define or use TkClassicDefaultFont.
* generic/ttk/ttkTreeview.c, generic/ttk/ttkPanedwindow.c:
Handle missing layouts.
Diffstat (limited to 'library/ttk/ttk.tcl')
-rw-r--r-- | library/ttk/ttk.tcl | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/library/ttk/ttk.tcl b/library/ttk/ttk.tcl index f573bfc..ed3c92d 100644 --- a/library/ttk/ttk.tcl +++ b/library/ttk/ttk.tcl @@ -1,5 +1,5 @@ # -# $Id: ttk.tcl,v 1.1 2006/10/31 01:42:27 hobbs Exp $ +# $Id: ttk.tcl,v 1.2 2006/11/24 18:04:14 jenglish Exp $ # # Ttk widget set initialization script. # @@ -24,27 +24,27 @@ source [file join $::ttk::library utils.tcl] # Define $old command as a deprecated alias for $new command # $old and $new must be fully namespace-qualified. # -proc ::ttk::deprecated {old new} { +proc ttk::deprecated {old new} { interp alias {} $old {} ttk::do'deprecate $old $new } ## do'deprecate -- # Implementation procedure for deprecated commands -- # issue a warning (once), then re-alias old to new. # -proc ::ttk::do'deprecate {old new args} { +proc ttk::do'deprecate {old new args} { deprecated'warning $old $new interp alias {} $old {} $new - eval [linsert $args 0 $new] + uplevel 1 [linsert $args 0 $new] } ## deprecated'warning -- # Gripe about use of deprecated commands. # -proc ::ttk::deprecated'warning {old new} { +proc ttk::deprecated'warning {old new} { puts stderr "$old deprecated -- use $new instead" } -### Forward-compatibility. +### Backward-compatibility. # # ttk::panedwindow used to be named ttk::paned. Keep the alias for now. # @@ -62,7 +62,6 @@ if {[info exists ::ttk::deprecrated] && $::ttk::deprecated} { } variable version 0.7.8 - variable patchlevel 0.7.8 } package provide tile $::tile::version @@ -85,10 +84,6 @@ if {[info exists ::ttk::deprecrated] && $::ttk::deprecated} { variable wc foreach wc $widgets { namespace export $wc - - deprecated ::t$wc ::ttk::$wc - deprecated ::tile::$wc ::ttk::$wc - namespace eval ::tile [list namespace export $wc] } } } |