summaryrefslogtreecommitdiffstats
path: root/carbon/tkMacOSXSubwindows.c
diff options
context:
space:
mode:
Diffstat (limited to 'carbon/tkMacOSXSubwindows.c')
-rw-r--r--carbon/tkMacOSXSubwindows.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/carbon/tkMacOSXSubwindows.c b/carbon/tkMacOSXSubwindows.c
index a90f171..48aef2d 100644
--- a/carbon/tkMacOSXSubwindows.c
+++ b/carbon/tkMacOSXSubwindows.c
@@ -105,9 +105,9 @@ XDestroyWindow(
}
if (macWin->toplevel->referenceCount == 0) {
- ckfree((char *) macWin->toplevel);
+ ckfree(macWin->toplevel);
}
- ckfree((char *) macWin);
+ ckfree(macWin);
return;
}
@@ -203,7 +203,7 @@ XDestroyWindow(
} else {
prevPtr->nextPtr = listPtr->nextPtr;
}
- ckfree((char *) listPtr);
+ ckfree(listPtr);
break;
}
}
@@ -218,7 +218,7 @@ XDestroyWindow(
*/
if (macWin->toplevel->referenceCount == 0) {
- ckfree((char *) macWin->toplevel);
+ ckfree(macWin->toplevel);
}
}
@@ -1410,7 +1410,7 @@ Tk_GetPixmap(
if (display != NULL) {
display->request++;
}
- macPix = (MacDrawable *) ckalloc(sizeof(MacDrawable));
+ macPix = ckalloc(sizeof(MacDrawable));
macPix->winPtr = NULL;
macPix->xOff = 0;
macPix->yOff = 0;
@@ -1458,7 +1458,7 @@ Tk_FreePixmap(
if (macPix->context) {
TkMacOSXDbgMsg("Cannot free CG backed Pixmap");
}
- ckfree((char *) macPix);
+ ckfree(macPix);
}
/*