summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixWm.c
diff options
context:
space:
mode:
Diffstat (limited to 'unix/tkUnixWm.c')
-rw-r--r--unix/tkUnixWm.c54
1 files changed, 0 insertions, 54 deletions
diff --git a/unix/tkUnixWm.c b/unix/tkUnixWm.c
index e2a9f82..526acf9 100644
--- a/unix/tkUnixWm.c
+++ b/unix/tkUnixWm.c
@@ -2033,8 +2033,6 @@ WmGridCmd(
Tcl_SetErrorCode(interp, "TK", "VALUE", "GRID", NULL);
return TCL_ERROR;
}
- Tk_SetGrid((Tk_Window) winPtr, reqWidth, reqHeight, widthInc,
- heightInc);
}
wmPtr->flags |= WM_UPDATE_SIZE_HINTS;
WmUpdateGeom(wmPtr, winPtr);
@@ -3814,58 +3812,6 @@ void Tk_SetSizeHints(
wmPtr->minHeight = minHeight;
wmPtr->maxHeight = maxHeight;
}
-
-
-/*
- *----------------------------------------------------------------------
- *
- * Tk_SetGrid --
- *
- * This function has been deprecated. It is a no-op for the time
- * being, until it is is removed.
- *
- * Results:
- * None.
- *
- * Side effects:
- * None.
- *
- *----------------------------------------------------------------------
- */
-
-void
-Tk_SetGrid(
- TCL_UNUSED(Tk_Window), /* tkwin */
- TCL_UNUSED(int), /* reqWidth */
- TCL_UNUSED(int), /* reqHeight */
- TCL_UNUSED(int), /* widthInc) */
- TCL_UNUSED(int)) /* heightInc */
-{
-}
-
-/*
- *----------------------------------------------------------------------
- *
- * Tk_UnsetGrid --
- *
- * This function has been deprecated. It is a no-op for the time
- * being, until it is removed.
- *
- * Results:
- * None.
- *
- * Side effects:
- * None.
- *
- *----------------------------------------------------------------------
- */
-
-void
-Tk_UnsetGrid(
- TCL_UNUSED(Tk_Window) /* tkwin */
- )
-{
-}
/*
*----------------------------------------------------------------------