summaryrefslogtreecommitdiffstats
path: root/win/tkWinWm.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-07-14 11:02:35 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-07-14 11:02:35 (GMT)
commit3f9e5a8e1a6a5b3a0917e82bed0dc34acf93cf67 (patch)
tree9a6ebf77a206d37df3f624b70ffd9ece31e7ddc4 /win/tkWinWm.c
parent92751c3e0866b78b2a36457363948cee95a92ce5 (diff)
downloadtk-3f9e5a8e1a6a5b3a0917e82bed0dc34acf93cf67.zip
tk-3f9e5a8e1a6a5b3a0917e82bed0dc34acf93cf67.tar.gz
tk-3f9e5a8e1a6a5b3a0917e82bed0dc34acf93cf67.tar.bz2
New TIP #580 implementation. Documentation still missing.
Diffstat (limited to 'win/tkWinWm.c')
-rw-r--r--win/tkWinWm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/win/tkWinWm.c b/win/tkWinWm.c
index f7a73f7..b22280a 100644
--- a/win/tkWinWm.c
+++ b/win/tkWinWm.c
@@ -3408,7 +3408,7 @@ WmColormapwindowsCmd(
break;
}
Tcl_ListObjAppendElement(NULL, resultObj,
- TkNewWindowObj((Tk_Window) wmPtr->cmapList[i]));
+ Tk_NewWindowObj((Tk_Window) wmPtr->cmapList[i]));
}
Tcl_SetObjResult(interp, resultObj);
return TCL_OK;
@@ -4569,7 +4569,7 @@ WmIconwindowCmd(
}
if (objc == 3) {
if (wmPtr->icon != NULL) {
- Tcl_SetObjResult(interp, TkNewWindowObj(wmPtr->icon));
+ Tcl_SetObjResult(interp, Tk_NewWindowObj(wmPtr->icon));
}
return TCL_OK;
}
@@ -5222,7 +5222,7 @@ WmStackorderCmd(
resultObj = Tcl_NewObj();
for (windowPtr = windows; *windowPtr ; windowPtr++) {
Tcl_ListObjAppendElement(NULL, resultObj,
- TkNewWindowObj((Tk_Window) *windowPtr));
+ Tk_NewWindowObj((Tk_Window) *windowPtr));
}
Tcl_SetObjResult(interp, resultObj);
ckfree(windows);
@@ -5558,7 +5558,7 @@ WmTransientCmd(
}
if (objc == 3) {
if (masterPtr != NULL) {
- Tcl_SetObjResult(interp, TkNewWindowObj((Tk_Window) masterPtr));
+ Tcl_SetObjResult(interp, Tk_NewWindowObj((Tk_Window) masterPtr));
}
return TCL_OK;
}