Tk Source Code

Check-in [db04a2a2]
Login

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

Overview
Comment:[Bug 3175610]: Incomplete refresh of line items.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | core-8-5-branch
Files: files | file ages | folders
SHA1: db04a2a2fbf9aac6cdcd6e4b7e80e45492f80db9
User & Date: dgp 2011-06-10 17:23:19
Context
2011-06-10
17:56
more changes check-in: 343e4b28 user: dgp tags: core-8-5-branch
17:23
[Bug 3175610]: Incomplete refresh of line items. check-in: db04a2a2 user: dgp tags: core-8-5-branch
17:18
[Bug 3175610]: Incomplete refresh of line items. check-in: 87393b6f user: dgp tags: core-8-4-branch
2011-06-09
18:10
reconcile changes among branches check-in: 9b03a8ad user: dgp tags: core-8-5-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to ChangeLog.






1
2
3
4
5
6
7





2011-06-08  Don Porter  <[email protected]>

	* changes:	Updated for 8.5.10 release.

2011-06-07  Don Porter  <[email protected]>

	* win/tkWinDialog.c:	Backport [Bug 2484771] fix.
>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
2011-06-10  Don Porter  <[email protected]>

	* generic/tkCanvLine.c: [Bug 3175610] Incomplete refresh of line item.
	Backport of 2011-03-03 trunk commit from Alexandre Ferrieux.

2011-06-08  Don Porter  <[email protected]>

	* changes:	Updated for 8.5.10 release.

2011-06-07  Don Porter  <[email protected]>

	* win/tkWinDialog.c:	Backport [Bug 2484771] fix.

Changes to changes.

6759
6760
6761
6762
6763
6764
6765


6766
6767

2011-06-06 (bug fix)[2546087] [console] treatment of '\0' (porter)

2011-06-07 (bug fix)[2358545] Restore "08" in spinbox configured with -from
and -to (porter)

2011-06-07 (bug fix)[2484771] modal dialog settings (hoff, thoyts)



--- Released 8.5.10, June 17, 2011 --- See ChangeLog for details ---







>
>


6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769

2011-06-06 (bug fix)[2546087] [console] treatment of '\0' (porter)

2011-06-07 (bug fix)[2358545] Restore "08" in spinbox configured with -from
and -to (porter)

2011-06-07 (bug fix)[2484771] modal dialog settings (hoff, thoyts)

2011-06-10 (bug fix)[3175610] incomplete line item refresh (ferrieux)

--- Released 8.5.10, June 17, 2011 --- See ChangeLog for details ---

Changes to generic/tkCanvLine.c.

1001
1002
1003
1004
1005
1006
1007
1008
1009
1010

1011
1012
1013
1014
1015
1016
1017
1018
	}
    }

    for (i=beforeThis; i<length; i++) {
	newCoordPtr[i+objc] = linePtr->coordPtr[i];
    }
    if (linePtr->coordPtr) {
	ckfree((char *)linePtr->coordPtr);
    }
    linePtr->coordPtr = newCoordPtr;

    linePtr->numPoints = (length + objc)/2;

    if ((length>3) && (state != TK_STATE_HIDDEN)) {
	/*
	 * This is some optimizing code that will result that only the part of
	 * the polygon that changed (and the objects that are overlapping with
	 * that part) need to be redrawn. A special flag is set that instructs
	 * the general canvas code not to redraw the whole object. If this







|


>
|







1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
	}
    }

    for (i=beforeThis; i<length; i++) {
	newCoordPtr[i+objc] = linePtr->coordPtr[i];
    }
    if (linePtr->coordPtr) {
	ckfree((char *) linePtr->coordPtr);
    }
    linePtr->coordPtr = newCoordPtr;
    length += objc;
    linePtr->numPoints = length / 2;

    if ((length>3) && (state != TK_STATE_HIDDEN)) {
	/*
	 * This is some optimizing code that will result that only the part of
	 * the polygon that changed (and the objects that are overlapping with
	 * that part) need to be redrawn. A special flag is set that instructs
	 * the general canvas code not to redraw the whole object. If this