diff options
author | pspjuth <peter.spjuth@gmail.com> | 2009-09-18 22:35:00 (GMT) |
---|---|---|
committer | pspjuth <peter.spjuth@gmail.com> | 2009-09-18 22:35:00 (GMT) |
commit | edff204f863b5527369a1ca046d40240fe45754d (patch) | |
tree | 9ddd43380dafb315f6433dbdd5f411d9fa1d7f79 /generic/tkPack.c | |
parent | 33e2ffcd22e3a6489550d76769c30cdaf2855466 (diff) | |
download | tk-edff204f863b5527369a1ca046d40240fe45754d.zip tk-edff204f863b5527369a1ca046d40240fe45754d.tar.gz tk-edff204f863b5527369a1ca046d40240fe45754d.tar.bz2 |
Bug fix in grid/pack collision detect.
Faulty slave was not properly blocked from slave list. [Bug 2859912]
Diffstat (limited to 'generic/tkPack.c')
-rw-r--r-- | generic/tkPack.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tkPack.c b/generic/tkPack.c index c113e6f..d57d2bf 100644 --- a/generic/tkPack.c +++ b/generic/tkPack.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkPack.c,v 1.34 2009/08/19 23:02:00 pspjuth Exp $ + * RCS: @(#) $Id: tkPack.c,v 1.35 2009/09/18 22:35:00 pspjuth Exp $ */ #include "tkInt.h" @@ -1261,6 +1261,7 @@ PackAfter( if (TkSetGeometryMaster(interp, masterPtr->tkwin, "pack") != TCL_OK) { Tk_ManageGeometry(tkwin, NULL, NULL); + Unlink(packPtr); return TCL_ERROR; } masterPtr->flags |= ALLOCED_MASTER; @@ -1793,6 +1794,7 @@ ConfigureSlaves( if (TkSetGeometryMaster(interp, masterPtr->tkwin, "pack") != TCL_OK) { Tk_ManageGeometry(slave, NULL, NULL); + Unlink(slavePtr); return TCL_ERROR; } masterPtr->flags |= ALLOCED_MASTER; |