Tk Source Code

Check-in [3aea88a4]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:[Bug 3388350] mingw64 compiler warnings
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | core-8-4-branch
Files: files | file ages | folders
SHA1: 3aea88a423c1cda869720fada358d89fc5ea7d4e
User & Date: jan.nijtmans 2011-08-16 12:22:14
Context
2011-08-30
07:44
Make SHLIB_LD_LIBS='${LIBS}' the default and set to "" on per-platform necessary basis. Add Haiku support and better NetBSD/FreeBSD support. check-in: bb80dd08 user: jan.nijtmans tags: core-8-4-branch
2011-08-16
13:03
[Bug 3388350] mingw64 compiler warnings check-in: 30375f51 user: jan.nijtmans tags: core-8-5-branch
12:22
[Bug 3388350] mingw64 compiler warnings check-in: 3aea88a4 user: jan.nijtmans tags: core-8-4-branch
07:57
[Bug 3388350] mingw64 compiler warnings check-in: 38034808 user: jan.nijtmans tags: core-8-4-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to ChangeLog.

8
9
10
11
12
13
14

15
16
17
18
19
20
21
	* win/tkWinCursor.c
	* win/tkWinDraw.c
	* win/tkWinImage.c
	* win/tkWinKey.c
	* win/tkWinMenu.c
	* win/tkWinWm.c
	* win/tkWinX.c

	* win/tcl.m4: Sync with win/tcl.m4 from Tcl
	* win/configure: (regenerated)
	* unix/tcl.m4: Sync with win/tcl.m4 from Tcl
	* unix/configure: (regenerated)

2011-08-13  Jan Nijtmans  <[email protected]>








>







8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
	* win/tkWinCursor.c
	* win/tkWinDraw.c
	* win/tkWinImage.c
	* win/tkWinKey.c
	* win/tkWinMenu.c
	* win/tkWinWm.c
	* win/tkWinX.c
	* win/tkWindow.c
	* win/tcl.m4: Sync with win/tcl.m4 from Tcl
	* win/configure: (regenerated)
	* unix/tcl.m4: Sync with win/tcl.m4 from Tcl
	* unix/configure: (regenerated)

2011-08-13  Jan Nijtmans  <[email protected]>

Changes to win/tkWinWindow.c.

203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
TkpScanWindowId(interp, string, idPtr)
    Tcl_Interp *interp;		/* Interpreter to use for error reporting. */
    CONST char *string;		/* String containing a (possibly signed)
				 * integer in a form acceptable to strtol. */
    Window *idPtr;		/* Place to store converted result. */
{
    Tk_Window tkwin;
    Window number;

    /*
     * We want sscanf for the 64-bit check, but if that doesn't work,
     * then Tcl_GetInt manages the error correctly.
     */
    if (
#ifdef _WIN64







|







203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
TkpScanWindowId(interp, string, idPtr)
    Tcl_Interp *interp;		/* Interpreter to use for error reporting. */
    CONST char *string;		/* String containing a (possibly signed)
				 * integer in a form acceptable to strtol. */
    Window *idPtr;		/* Place to store converted result. */
{
    Tk_Window tkwin;
    VOID *number;

    /*
     * We want sscanf for the 64-bit check, but if that doesn't work,
     * then Tcl_GetInt manages the error correctly.
     */
    if (
#ifdef _WIN64