summaryrefslogtreecommitdiffstats
path: root/generic/tkInt.h
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2020-06-02 06:52:47 (GMT)
committerfvogel <fvogelnew1@free.fr>2020-06-02 06:52:47 (GMT)
commit169bf5a922972c64aa154479d588919763f77e88 (patch)
treefd9b5522ca245c382a08a7b40180e19de8093fcf /generic/tkInt.h
parent7e224c0bcdec400cbdb89459313b1e4ea73bc896 (diff)
downloadtk-169bf5a922972c64aa154479d588919763f77e88.zip
tk-169bf5a922972c64aa154479d588919763f77e88.tar.gz
tk-169bf5a922972c64aa154479d588919763f77e88.tar.bz2
Remove the TK_DISPLAY_IN_WARP machinery completely.
Diffstat (limited to 'generic/tkInt.h')
-rw-r--r--generic/tkInt.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/generic/tkInt.h b/generic/tkInt.h
index c1bd562d..cc710d6 100644
--- a/generic/tkInt.h
+++ b/generic/tkInt.h
@@ -535,15 +535,12 @@ typedef struct TkDisplay {
* Whether to use input methods for this display
* TK_DISPLAY_WM_TRACING: (default off)
* Whether we should do wm tracing on this display.
- * TK_DISPLAY_IN_WARP: (default off)
- * Indicates that we are in a pointer warp
*/
#define TK_DISPLAY_COLLAPSE_MOTION_EVENTS (1 << 0)
#define TK_DISPLAY_USE_IM (1 << 1)
#define TK_DISPLAY_WM_TRACING (1 << 3)
-#define TK_DISPLAY_IN_WARP (1 << 4)
-#define TK_DISPLAY_USE_XKB (1 << 5)
+#define TK_DISPLAY_USE_XKB (1 << 4)
/*
* One of the following structures exists for each error handler created by a
@@ -1251,7 +1248,6 @@ MODULE_SCOPE int TkInitTkCmd(Tcl_Interp *interp,
MODULE_SCOPE int TkInitFontchooser(Tcl_Interp *interp,
ClientData clientData);
MODULE_SCOPE void TkpWarpPointer(TkDisplay *dispPtr);
-MODULE_SCOPE void TkpCancelWarp(TkDisplay *dispPtr);
MODULE_SCOPE int TkListCreateFrame(ClientData clientData,
Tcl_Interp *interp, Tcl_Obj *listObj,
int toplevel, Tcl_Obj *nameObj);