diff options
author | ferrieux <ferrieux@users.sourceforge.net> | 2008-12-21 23:52:45 (GMT) |
---|---|---|
committer | ferrieux <ferrieux@users.sourceforge.net> | 2008-12-21 23:52:45 (GMT) |
commit | 7bccb3db79ee269e12c5f019c68396947a92837a (patch) | |
tree | 6aaa853e62bf644e2a1ef9de0c9b5358fd47c650 /generic/tkText.c | |
parent | 75b24e6f6a7d295644ed07ae12501fcc43fe1a43 (diff) | |
download | tk-7bccb3db79ee269e12c5f019c68396947a92837a.zip tk-7bccb3db79ee269e12c5f019c68396947a92837a.tar.gz tk-7bccb3db79ee269e12c5f019c68396947a92837a.tar.bz2 |
Backport of the Millipeter patch [1813597,2218964]
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 21077df..fb2f9b1 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.79.2.1 2008/12/07 16:48:00 das Exp $ + * RCS: @(#) $Id: tkText.c,v 1.79.2.2 2008/12/21 23:52:45 ferrieux Exp $ */ #include "default.h" @@ -4326,12 +4326,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)) { /* |