diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2008-10-03 13:13:31 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2008-10-03 13:13:31 (GMT) |
commit | f28037f5b16a0708ab761a506a4041bdd41493c2 (patch) | |
tree | 5f8791b7d6fede6856ef719fbb242afe7ff5bc5f /win | |
parent | cc0e1700ca391c7af10570d2b7bbeedc19f4fe1b (diff) | |
download | tk-f28037f5b16a0708ab761a506a4041bdd41493c2.zip tk-f28037f5b16a0708ab761a506a4041bdd41493c2.tar.gz tk-f28037f5b16a0708ab761a506a4041bdd41493c2.tar.bz2 |
Convert %g to Tcl_PrintDouble to avoid locale trouble. [Bug 2112563]
Diffstat (limited to 'win')
-rw-r--r-- | win/tkWinScrlbr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinScrlbr.c b/win/tkWinScrlbr.c index a6f19bc..0060a9f 100644 --- a/win/tkWinScrlbr.c +++ b/win/tkWinScrlbr.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinScrlbr.c,v 1.15 2007/12/14 15:56:09 patthoyts Exp $ + * RCS: @(#) $Id: tkWinScrlbr.c,v 1.16 2008/10/03 13:13:31 dkf Exp $ */ #include "tkWinInt.h" @@ -563,7 +563,7 @@ ScrollbarProc( break; } - sprintf(valueString, "%g", pos); + Tcl_PrintDouble(NULL, pos, valueString); Tcl_DStringAppendElement(&cmdString, "moveto"); Tcl_DStringAppendElement(&cmdString, valueString); } |