Tk Source Code

Check-in [8a08ffdf]
Login

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

Overview
Comment:Fix the build for MSVC
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | bug-58665b91dd
Files: files | file ages | folders
SHA3-256: 8a08ffdf90c62395b21a1446901d6aeb354829567e040659cfae85ab6b51946b
User & Date: fvogel 2019-02-08 17:10:18.752
Context
2019-02-08
17:10
Fix the build for MSVC check-in: 318d48d5 user: fvogel tags: core-8-6-branch
17:10
Fix the build for MSVC Closed-Leaf check-in: 8a08ffdf user: fvogel tags: bug-58665b91dd
2019-02-07
17:08
Also change tkWinEmbed.c to match the change in tkUnixEmbed.c, for consistency. check-in: de9ae713 user: culler tags: bug-58665b91dd
Changes
Unified Diff Ignore Whitespace Patch
Changes to win/tkWinEmbed.c.
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871

    if (eventPtr->type == ConfigureNotify) {

	/*
         * Send a ConfigureNotify  to the embedded application.
         */

        if (containerPtr->embeddedPtr != None) {
            TkDoConfigureNotify(containerPtr->embeddedPtr);
        }

	/*
	 * Resize the embedded window, if there is any.
	 */








|







857
858
859
860
861
862
863
864
865
866
867
868
869
870
871

    if (eventPtr->type == ConfigureNotify) {

	/*
         * Send a ConfigureNotify  to the embedded application.
         */

        if (containerPtr->embeddedPtr != NULL) {
            TkDoConfigureNotify(containerPtr->embeddedPtr);
        }

	/*
	 * Resize the embedded window, if there is any.
	 */