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/tkInt.h | |
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/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index 2b4705c..3ab1d77 100644 --- a/generic/tkInt.h +++ b/generic/tkInt.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: $Id: tkInt.h,v 1.95 2008/11/23 21:58:24 patthoyts Exp $ + * RCS: $Id: tkInt.h,v 1.96 2008/11/27 23:47:09 ferrieux Exp $ */ #ifndef _TKINT @@ -1141,6 +1141,11 @@ MODULE_SCOPE int Tk_WinfoObjCmd(ClientData clientData, MODULE_SCOPE int Tk_WmObjCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); +MODULE_SCOPE int Tk_GetDoublePixelsFromObj(Tcl_Interp *interp, + Tk_Window tkwin, + Tcl_Obj *objPtr, + double *doublePtr); + MODULE_SCOPE void TkEventInit(void); MODULE_SCOPE void TkRegisterObjTypes(void); MODULE_SCOPE int TkCreateMenuCmd(Tcl_Interp *interp); |