diff options
author | dkf <dkf@noemail.net> | 2004-10-19 15:24:43 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2004-10-19 15:24:43 (GMT) |
commit | aa7927bfdbefb2b498e8a267a840b88fb3239947 (patch) | |
tree | 1f5d7bae71789afc0554bd7a231bdda7cb8708ef /library/demos/menu.tcl | |
parent | ebf0b285e4ed83a3479f7b31455cf1277d7ba53c (diff) | |
download | tk-aa7927bfdbefb2b498e8a267a840b88fb3239947.zip tk-aa7927bfdbefb2b498e8a267a840b88fb3239947.tar.gz tk-aa7927bfdbefb2b498e8a267a840b88fb3239947.tar.bz2 |
Rename all XBM format files to be called *.xbm instead of *.bmp [Bug 733835]
FossilOrigin-Name: 243c90c3032541d1a6b9bb85b39e3a65793906fc
Diffstat (limited to 'library/demos/menu.tcl')
-rw-r--r-- | library/demos/menu.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/demos/menu.tcl b/library/demos/menu.tcl index 716294f..91eb654 100644 --- a/library/demos/menu.tcl +++ b/library/demos/menu.tcl @@ -3,7 +3,7 @@ # This demonstration script creates a window with a bunch of menus # and cascaded menus using menubars. # -# RCS: @(#) $Id: menu.tcl,v 1.6 2003/11/03 15:31:18 dkf Exp $ +# RCS: @(#) $Id: menu.tcl,v 1.7 2004/10/19 15:25:07 dkf Exp $ if {![info exists widgetDemo]} { error "This script should be run from the \"widget\" demo." @@ -116,7 +116,7 @@ $w.menu add cascade -label "Icons" -menu $m -underline 0 menu $m -tearoff 0 # Main widget program sets variable tk_demoDirectory $m add command \ - -bitmap @[file join $tk_demoDirectory images pattern.bmp] \ + -bitmap @[file join $tk_demoDirectory images pattern.xbm] \ -hidemargin 1 \ -command { tk_dialog .pattern {Bitmap Menu Entry} {The menu entry you invoked displays a bitmap rather than a text string. Other than this, it is just like any other menu entry.} {} 0 OK |