diff options
author | chengyemao <chengyemao> | 2005-01-09 18:28:05 (GMT) |
---|---|---|
committer | chengyemao <chengyemao> | 2005-01-09 18:28:05 (GMT) |
commit | 53ca9bd61e0fa3accf2e0b77aa33e8ee8465561e (patch) | |
tree | 1bb1ddf055844df628ee13afe56678577b189eee /macosx | |
parent | 78f322c053a7e2138b1c3651fe5575e43fa033d1 (diff) | |
download | tk-53ca9bd61e0fa3accf2e0b77aa33e8ee8465561e.zip tk-53ca9bd61e0fa3accf2e0b77aa33e8ee8465561e.tar.gz tk-53ca9bd61e0fa3accf2e0b77aa33e8ee8465561e.tar.bz2 |
Changed to make platform implementation ready for a toplevel -use option; completed a full toplevel -use option configuration for Windows
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXEmbed.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/tkMacOSXEmbed.c b/macosx/tkMacOSXEmbed.c index 15be5b4..7ed29e8 100644 --- a/macosx/tkMacOSXEmbed.c +++ b/macosx/tkMacOSXEmbed.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXEmbed.c,v 1.3 2004/01/13 02:06:01 davygrvy Exp $ + * RCS: @(#) $Id: tkMacOSXEmbed.c,v 1.4 2005/01/09 18:28:06 chengyemao Exp $ */ #include "tkInt.h" @@ -242,7 +242,8 @@ TkpUseWindow( int result; if (winPtr->window != None) { - Tcl_Panic("TkpUseWindow: X window already assigned"); + Tcl_AppendResult(interp, "can't modify container after widget is created", (char *) NULL); + return TCL_ERROR; } /* |