summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixPort.h
diff options
context:
space:
mode:
authorhobbs <hobbs>2001-09-21 21:22:09 (GMT)
committerhobbs <hobbs>2001-09-21 21:22:09 (GMT)
commitf0c92790e6966ffac3b81e55597e5486bccc5541 (patch)
treeb0d40c034e2fdb8dad84eb2c40d95cf2b69094d6 /unix/tkUnixPort.h
parent3bf2f18a812773f8c5c14372b1e67e8b78608955 (diff)
downloadtk-f0c92790e6966ffac3b81e55597e5486bccc5541.zip
tk-f0c92790e6966ffac3b81e55597e5486bccc5541.tar.gz
tk-f0c92790e6966ffac3b81e55597e5486bccc5541.tar.bz2
* unix/tkUnixPort.h:
* mac/tkMacPort.h: add (int*) cast to TkpScanWindowId. These may need to be changed to Window* (ulong).
Diffstat (limited to 'unix/tkUnixPort.h')
-rw-r--r--unix/tkUnixPort.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/unix/tkUnixPort.h b/unix/tkUnixPort.h
index 242d127..e2895dc 100644
--- a/unix/tkUnixPort.h
+++ b/unix/tkUnixPort.h
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkUnixPort.h,v 1.5 1999/04/16 01:51:47 stanton Exp $
+ * RCS: @(#) $Id: tkUnixPort.h,v 1.6 2001/09/21 21:22:09 hobbs Exp $
*/
#ifndef _UNIXPORT
@@ -200,18 +200,19 @@ extern int errno;
/*
* This macro stores a representation of the window handle in a string.
+ * This should perhaps use the real size of an XID.
*/
#define TkpPrintWindowId(buf,w) \
sprintf((buf), "0x%x", (unsigned int) (w))
-
+
/*
* TkpScanWindowId is just an alias for Tcl_GetInt on Unix.
*/
#define TkpScanWindowId(i,s,wp) \
- Tcl_GetInt((i),(s),(wp))
-
+ Tcl_GetInt((i),(s),(int *)(wp))
+
/*
* This macro indicates that entry and text widgets should display
* the selection highlight regardless of which window has the focus.