summaryrefslogtreecommitdiffstats
path: root/generic/tkOldTest.c
Commit message (Collapse)AuthorAgeFilesLines
* Eliminate last two calls to Tcl_CreateCommand().jan.nijtmans2014-06-301-21/+21
|
* Replace various functions calls, for functions which are small wrappers ↵jan.nijtmans2013-01-141-6/+6
| | | | around other functions, to call the wrapped function directly.
* Purge RCS Keywordsdgp2011-06-081-2/+0
|\
| * Purge RCS Keywords.dgp2011-06-081-2/+0
| |
* | Remove casts from uses of ckalloc/ckfree/... now that Tcl declares them to bedkf2011-03-121-6/+6
| | | | | | using useful casts internally.
* | fix more gcc warnings: missing initializernijtmans2010-01-181-2/+3
| | | | | | | | | | Apply patch [#2932808]: Canvas items not updating on widget state change
* | Make all internal initializationnijtmans2009-11-291-2/+1
| | | | | | | | | | | | routines MODULE_SCOPE copy win/tcl.m4 from Tcl (latest) to Tk and regenerate win/configure
* | Compile tkTest.c and friends with Stubsnijtmans2009-11-191-1/+7
| |
* | ttkEntry.c: fix warning: unused variable 'currentValue'nijtmans2008-11-031-2/+2
| | | | | | | | tkOldTest.c: fix warning: assignment discards qualifiers from pointer target type
* | fix [2021443] inconsistant "wrong # args" messages (for Tk)nijtmans2008-07-231-2/+2
| |
* | Get rid of pre-C89-isms (esp. CONST vs const).dkf2008-04-271-11/+11
|/
* [Tk Bug 1712081]dgp2007-05-141-0/+406
* unix/Makefile.in: Updates to account for new and deleted files * win/Makefile.in: tkStubImg.c and tkOldTest.c. * win/makefile.bc: * win/makefile.vc: * generic/tkOldTest.c (new): New file used to create testing * generic/tkTest.c: commands for testing various Tk * tests/constraints.tcl: legacy interfaces where a separate * tests/image.test: compilation unit is needed in order to #define suitable macros during compilation. Only the effect of USE_OLD_IMAGE on Tk_CreateImageType() is currently tested, but more similar testing commands can be added to this same file. New constraint defined to detect presence of the image type provided by the new testing code, and a few tests added to exercise it. Having USE_OLD_IMAGE support tested by the default test suite should reduce chance of a recurrence of this bug. * doc/CrtImgType.3: Revised docs to better indicate the legacy * doc/CrtPhImgFmt.3: nature of the interfaces supported by USE_OLD_IMAGE. * generic/tkDecls.h: make genstubs * generic/tkStubInit.c: * generic/tk.decls: Reworked USE_OLD_IMAGE support to use * generic/tk.h: the same support mechanisms both with * generic/tkStubImg.c (deleted):and without a stub-enabled build. In each case, route the legacy calls to Tk_CreateImageType and Tk_CreatePhotoImageFormat through the Tk_CreateOldImageType and Tk_CreateOldPhotoImageFormat routines. Add those routines to the public stub table so they're available to a stub-enabled extension. Remove the definition of Tk_InitImageArgs() and use a macro to convert any calls to it in source code into a comment. * generic/tkImage.c: Removed the MODULE_SCOPE declarations that * generic/tkImgPhoto.c: broke USE_OLD_IMAGE support.