diff options
author | nijtmans <nijtmans> | 2009-06-27 19:33:35 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2009-06-27 19:33:35 (GMT) |
commit | e4a87c21cb59539eeddcc65d359e9b06d597fed3 (patch) | |
tree | c6fbb61aa54a9cdd8851f9a3d4e0b16392f5a387 /generic/tkInt.h | |
parent | 501fcd66876991e90384cad2039ec6ee83d3c485 (diff) | |
download | tk-e4a87c21cb59539eeddcc65d359e9b06d597fed3.zip tk-e4a87c21cb59539eeddcc65d359e9b06d597fed3.tar.gz tk-e4a87c21cb59539eeddcc65d359e9b06d597fed3.tar.bz2 |
Expose TkSmooth(Parse|Print)Proc through the internal stub table. It was the last set of internal function of this type which was not exposed yet.macosx_cocoa_premerge
Removed TkTile(Parse|Print)Proc from tkInt.h, because they don't exist.
Follow-up to [Bug 2804935], now all Tk*(Parse|Print)Proc functions are exposed through the internal stub table.
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r-- | generic/tkInt.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h index fc2e394..badad64 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.102 2009/06/12 12:46:11 dkf Exp $ + * RCS: $Id: tkInt.h,v 1.103 2009/06/27 19:33:35 nijtmans Exp $ */ #ifndef _TKINT @@ -1163,18 +1163,6 @@ MODULE_SCOPE int TkGetDoublePixels(Tcl_Interp *interp, Tk_Window tkwin, MODULE_SCOPE int TkPostscriptImage(Tcl_Interp *interp, Tk_Window tkwin, Tk_PostscriptInfo psInfo, XImage *ximage, int x, int y, int width, int height); -MODULE_SCOPE int TkSmoothParseProc(ClientData clientData, - Tcl_Interp *interp, Tk_Window tkwin, - const char *value, char *recordPtr, int offset); -MODULE_SCOPE const char * TkSmoothPrintProc(ClientData clientData, - Tk_Window tkwin, char *recordPtr, int offset, - Tcl_FreeProc **freeProcPtr); -MODULE_SCOPE int TkTileParseProc(ClientData clientData, - Tcl_Interp *interp, Tk_Window tkwin, - const char *value, char *widgRec, int offset); -MODULE_SCOPE const char * TkTilePrintProc(ClientData clientData, - Tk_Window tkwin, char *widgRec, int offset, - Tcl_FreeProc **freeProcPtr); MODULE_SCOPE void TkMapTopFrame(Tk_Window tkwin); MODULE_SCOPE XEvent * TkpGetBindingXEvent(Tcl_Interp *interp); MODULE_SCOPE void TkCreateExitHandler(Tcl_ExitProc *proc, |