diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2008-11-15 00:00:27 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2008-11-15 00:00:27 (GMT) |
commit | 4c0836f8ae0a1a68edf876a7bcce826b8518d658 (patch) | |
tree | 0cd171a59f6750b740f05dea59cfa718220543b3 /generic/tkFrame.c | |
parent | 080a0c2bef5e33ed37734a26d0647ea309cc3ea2 (diff) | |
download | tk-4c0836f8ae0a1a68edf876a7bcce826b8518d658.zip tk-4c0836f8ae0a1a68edf876a7bcce826b8518d658.tar.gz tk-4c0836f8ae0a1a68edf876a7bcce826b8518d658.tar.bz2 |
bug 2239034: restrict [wm manage] to Frame type widgets
Diffstat (limited to 'generic/tkFrame.c')
-rw-r--r-- | generic/tkFrame.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tkFrame.c b/generic/tkFrame.c index 472c8ca..4ff8866 100644 --- a/generic/tkFrame.c +++ b/generic/tkFrame.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkFrame.c,v 1.36 2008/11/08 22:52:29 dkf Exp $ + * RCS: @(#) $Id: tkFrame.c,v 1.37 2008/11/15 00:00:27 patthoyts Exp $ */ #include "default.h" @@ -556,6 +556,12 @@ CreateFrame( } if (newWin == NULL) { goto error; + } else { + /* + * Mark Tk frames as suitable candidates for [wm manage] + */ + TkWindow *winPtr = (TkWindow *)newWin; + winPtr->flags |= TK_WM_MANAGEABLE; } if (className == NULL) { className = Tk_GetOption(newWin, "class", "Class"); |