diff options
author | nijtmans <nijtmans@noemail.net> | 2009-06-27 19:53:15 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2009-06-27 19:53:15 (GMT) |
commit | 11265638b54f1e0a76a3a44031eae325b14fcaee (patch) | |
tree | 4de059e3eb060c0dd51ade548cc53b8de96831ef /generic/tkStubInit.c | |
parent | 8eaf718302852beb54302741e0cf174840c374ef (diff) | |
download | tk-11265638b54f1e0a76a3a44031eae325b14fcaee.zip tk-11265638b54f1e0a76a3a44031eae325b14fcaee.tar.gz tk-11265638b54f1e0a76a3a44031eae325b14fcaee.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.
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: b15832de015fbd1f0b8177a56017c010ef9147fc
Diffstat (limited to 'generic/tkStubInit.c')
-rw-r--r-- | generic/tkStubInit.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tkStubInit.c b/generic/tkStubInit.c index 42e919b..bf00408 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.60.2.1 2009/04/27 10:39:57 dkf Exp $ + * RCS: @(#) $Id: tkStubInit.c,v 1.60.2.2 2009/06/27 19:53:16 nijtmans Exp $ */ #include "tkInt.h" @@ -334,6 +334,10 @@ TkIntStubs tkIntStubs = { TkOffsetPrintProc, /* 174 */ TkPixelParseProc, /* 175 */ TkPixelPrintProc, /* 176 */ + TkOrientParseProc, /* 177 */ + TkOrientPrintProc, /* 178 */ + TkSmoothParseProc, /* 179 */ + TkSmoothPrintProc, /* 180 */ }; TkIntPlatStubs tkIntPlatStubs = { |