diff options
author | jenglish@flightlab.com <jenglish> | 2010-06-15 16:59:15 (GMT) |
---|---|---|
committer | jenglish@flightlab.com <jenglish> | 2010-06-15 16:59:15 (GMT) |
commit | a762fcd58cdd78bb9ac4ad845185e596cc3a5845 (patch) | |
tree | 3a77eff4c311448f918748ea0446f248f7435441 | |
parent | 30447578a77ab009268016d1de8806efc946444c (diff) | |
download | tk-a762fcd58cdd78bb9ac4ad845185e596cc3a5845.zip tk-a762fcd58cdd78bb9ac4ad845185e596cc3a5845.tar.gz tk-a762fcd58cdd78bb9ac4ad845185e596cc3a5845.tar.bz2 |
[Bug 3016598] Bump dummy [package ifneeded tile] version to 0.8.6.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | library/ttk/ttk.tcl | 11 |
2 files changed, 12 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2010-06-15 Joe English <jenglish@users.sourceforge.net> + + * library/ttk/ttk.tcl: Bump dummy [package ifneeded tile] version + to 0.8.6; see [Bug 3016598]. + 2010-06-15 Donal K. Fellows <dkf@users.sf.net> * library/text.tcl (TextCursorInSelection): [Patch 2585265]: Make it diff --git a/library/ttk/ttk.tcl b/library/ttk/ttk.tcl index 6b859b6..0db16a0 100644 --- a/library/ttk/ttk.tcl +++ b/library/ttk/ttk.tcl @@ -1,5 +1,5 @@ # -# $Id: ttk.tcl,v 1.10 2008/12/05 11:11:58 patthoyts Exp $ +# $Id: ttk.tcl,v 1.11 2010/06/15 16:59:16 jenglish Exp $ # # Ttk widget set initialization script. # @@ -44,8 +44,11 @@ proc ttk::deprecated'warning {old new} { ### Backward-compatibility. # - -package ifneeded tile 0.8.0 { package require Tk ; package provide tile 0.8.0 } +# +# Make [package require tile] an effective no-op; +# see SF#3016598 for discussion. +# +package ifneeded tile 0.8.6 { package provide tile 0.8.6 } # ttk::panedwindow used to be named ttk::paned. Keep the alias for now. # @@ -144,7 +147,7 @@ ttk::LoadThemes; rename ::ttk::LoadThemes {} ### Select platform-specific default theme: # -# Notes: +# Notes: # + On OSX, aqua theme is the default # + On Windows, xpnative takes precedence over winnative if available. # + On X11, users can use the X resource database to |