diff options
author | nijtmans <nijtmans@noemail.net> | 2009-06-27 19:33:35 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2009-06-27 19:33:35 (GMT) |
commit | 26cb1dfcf18ed78319ed485346885111ef5c34ed (patch) | |
tree | c6fbb61aa54a9cdd8851f9a3d4e0b16392f5a387 /generic/tkStubInit.c | |
parent | 276bb1eb068d0564739a5084f2f4f8c20aa1a977 (diff) | |
download | tk-26cb1dfcf18ed78319ed485346885111ef5c34ed.zip tk-26cb1dfcf18ed78319ed485346885111ef5c34ed.tar.gz tk-26cb1dfcf18ed78319ed485346885111ef5c34ed.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.
FossilOrigin-Name: 068ec1507fe76940efdb73405361ab09e3ae6f36
Diffstat (limited to 'generic/tkStubInit.c')
-rw-r--r-- | generic/tkStubInit.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tkStubInit.c b/generic/tkStubInit.c index e9632a5..868311c 100644 --- a/generic/tkStubInit.c +++ b/generic/tkStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkStubInit.c,v 1.69 2009/06/12 23:03:23 dkf Exp $ + * RCS: @(#) $Id: tkStubInit.c,v 1.70 2009/06/27 19:33:35 nijtmans Exp $ */ #include "tkInt.h" @@ -330,6 +330,8 @@ static const TkIntStubs tkIntStubs = { TkPixelPrintProc, /* 176 */ TkOrientParseProc, /* 177 */ TkOrientPrintProc, /* 178 */ + TkSmoothParseProc, /* 179 */ + TkSmoothPrintProc, /* 180 */ }; static const TkIntPlatStubs tkIntPlatStubs = { |