summaryrefslogtreecommitdiffstats
path: root/generic/tkWindow.c
diff options
context:
space:
mode:
authorericm <ericm>2000-08-02 23:08:19 (GMT)
committerericm <ericm>2000-08-02 23:08:19 (GMT)
commit7d67184a277c2923bc3f951b256ad643113c6a8e (patch)
tree59f48b5c69b01befbf1cab053c896977fd387000 /generic/tkWindow.c
parentd27ee63662ac46121aeb974aad912fa29bce12d5 (diff)
downloadtk-7d67184a277c2923bc3f951b256ad643113c6a8e.zip
tk-7d67184a277c2923bc3f951b256ad643113c6a8e.tar.gz
tk-7d67184a277c2923bc3f951b256ad643113c6a8e.tar.bz2
* generic/tkCmds.c (Tk_TkwaitObjCmd): Tcl_Obj'ified [tkwait] command.
* generic/tkWindow.c: Updated "tkwait" command entry to use Tcl_Obj'ified command. * generic/tkInt.h: Replace Tk_TkwaitCmd prototype with Tk_TkwaitObjCmd prototype.
Diffstat (limited to 'generic/tkWindow.c')
-rw-r--r--generic/tkWindow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkWindow.c b/generic/tkWindow.c
index c2bc9fb..7578c0f 100644
--- a/generic/tkWindow.c
+++ b/generic/tkWindow.c
@@ -12,7 +12,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.19 2000/08/02 01:33:33 ericm Exp $
+ * RCS: @(#) $Id: tkWindow.c,v 1.20 2000/08/02 23:08:20 ericm Exp $
*/
#include "tkPort.h"
@@ -115,7 +115,7 @@ static TkCmd commands[] = {
{"raise", NULL, Tk_RaiseObjCmd, 1, 1},
{"selection", Tk_SelectionCmd, NULL, 0, 1},
{"tk", NULL, Tk_TkObjCmd, 0, 1},
- {"tkwait", Tk_TkwaitCmd, NULL, 1, 1},
+ {"tkwait", NULL, Tk_TkwaitObjCmd, 1, 1},
#if defined(__WIN32__) || defined(MAC_TCL)
{"tk_chooseColor", NULL, Tk_ChooseColorObjCmd, 0, 1},
{"tk_chooseDirectory", NULL, Tk_ChooseDirectoryObjCmd, 0, 1},