diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2007-10-24 00:16:43 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2007-10-24 00:16:43 (GMT) |
commit | 373d9b2be8983294414323edd2b51b689ab821d8 (patch) | |
tree | 71bedc25a51001f488c95c4f3e8d267941bbd716 /generic/tkWindow.c | |
parent | e3658d66f9314e3bff496f38883d69835a29e727 (diff) | |
download | tk-373d9b2be8983294414323edd2b51b689ab821d8.zip tk-373d9b2be8983294414323edd2b51b689ab821d8.tar.gz tk-373d9b2be8983294414323edd2b51b689ab821d8.tar.bz2 |
permit wm manage of any widget (esp: ttk::frame)
Diffstat (limited to 'generic/tkWindow.c')
-rw-r--r-- | generic/tkWindow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkWindow.c b/generic/tkWindow.c index d9da81a..c2e12f8 100644 --- a/generic/tkWindow.c +++ b/generic/tkWindow.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: tkWindow.c,v 1.86 2007/09/17 14:58:05 dgp Exp $ + * RCS: @(#) $Id: tkWindow.c,v 1.87 2007/10/24 00:16:43 patthoyts Exp $ */ #include "tkInt.h" @@ -1706,7 +1706,7 @@ Tk_MakeWindowExist( } createProc = Tk_GetClassProc(winPtr->classProcsPtr, createProc); - if (createProc != NULL) { + if (createProc != NULL && parent != None) { winPtr->window = (*createProc)(tkwin, parent, winPtr->instanceData); } else { winPtr->window = TkpMakeWindow(winPtr, parent); |