diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2003-09-30 08:45:46 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2003-09-30 08:45:46 (GMT) |
commit | aba06731f7bcc8bfdbee568d70e1fd8611f6dce4 (patch) | |
tree | 1782de9af0effe7abf97ed28c5d2452b18fbe696 | |
parent | 364b8210d2786ae19fdbd8d5f1729485865b3b30 (diff) | |
download | tk-aba06731f7bcc8bfdbee568d70e1fd8611f6dce4.zip tk-aba06731f7bcc8bfdbee568d70e1fd8611f6dce4.tar.gz tk-aba06731f7bcc8bfdbee568d70e1fd8611f6dce4.tar.bz2 |
Remove a dependency on font size in textWind 10.1
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tests/textWind.test | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2003-09-30 Pat Thoyts <patthoyts@users.sourceforge.net> + + * tests/safe.test: Accomodate TIP #150 in the results. + * tests/textWind.test: Fix a dependancy on font size in 10.1 + 2003-09-30 Donal K. Fellows <fellowsd@cs.man.ac.uk> * generic/tkCanvas.c (TkGetStringsFromObjs): diff --git a/tests/textWind.test b/tests/textWind.test index f2aed08..ea60b89 100644 --- a/tests/textWind.test +++ b/tests/textWind.test @@ -6,7 +6,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: textWind.test,v 1.7 2003/05/19 13:04:24 vincentdarley Exp $ +# RCS: @(#) $Id: textWind.test,v 1.8 2003/09/30 08:45:46 patthoyts Exp $ package require tcltest 2.1 eval tcltest::configure $argv @@ -407,8 +407,8 @@ test textWind-10.1 {EmbWinLayoutProc procedure} { frame .f -width 10 -height 20 -bg $color } update - list [winfo exists .f] [winfo geom .f] [.t index .f] -} {1 10x20+40+5 1.5} + list [winfo exists .f] [winfo width .f] [winfo height .f] [.t index .f] +} {1 10 20 1.5} test textWind-10.2 {EmbWinLayoutProc procedure, error in creating window} {fonts} { .t delete 1.0 end .t insert 1.0 "Some sample text" |