diff options
author | ferrieux <ferrieux@users.sourceforge.net> | 2008-11-27 23:47:09 (GMT) |
---|---|---|
committer | ferrieux <ferrieux@users.sourceforge.net> | 2008-11-27 23:47:09 (GMT) |
commit | 01a618069d775fcdce058d2fc203f55073e95435 (patch) | |
tree | c9fc8e9cb71b8cf58580375c8cbc29a24be76984 /generic/tkText.c | |
parent | 713876e1f5bca010fe3fa12da61c8fdf67cd5665 (diff) | |
download | tk-01a618069d775fcdce058d2fc203f55073e95435.zip tk-01a618069d775fcdce058d2fc203f55073e95435.tar.gz tk-01a618069d775fcdce058d2fc203f55073e95435.tar.bz2 |
Millimeter patch. Fixes [1813597,2218964] by eliminating the functional redundancy and unnecessary loss of precision of the {pixel,mm}ObjType tandem.
Diffstat (limited to 'generic/tkText.c')
-rw-r--r-- | generic/tkText.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/generic/tkText.c b/generic/tkText.c index 59a855f..c2cc914 100644 --- a/generic/tkText.c +++ b/generic/tkText.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkText.c,v 1.84 2008/11/08 18:44:40 dkf Exp $ + * RCS: @(#) $Id: tkText.c,v 1.85 2008/11/27 23:47:09 ferrieux Exp $ */ #include "default.h" @@ -4323,12 +4323,10 @@ TkTextGetTabs( } prevStop = lastStop; - if (Tk_GetMMFromObj(interp, textPtr->tkwin, objv[i], - &lastStop) != TCL_OK) { + if (Tk_GetDoublePixelsFromObj (interp, textPtr->tkwin, objv[i], + &lastStop) != TCL_OK) { goto error; } - lastStop *= WidthOfScreen(Tk_Screen(textPtr->tkwin)); - lastStop /= WidthMMOfScreen(Tk_Screen(textPtr->tkwin)); if (i > 0 && (tabPtr->location <= (tabPtr-1)->location)) { /* |