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/tkStubInit.c | |
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/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 = { |