diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-07-12 12:29:42 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-07-12 12:29:42 (GMT) |
commit | 02e336a3fe60cf9e3cc1d90d2d2d3fa98e1a3a5a (patch) | |
tree | 9afbb242702ecdaf583a8549bbb16ecdebc50066 /unix/tkUnixRFont.c | |
parent | 6e3155d279cf28581344bfd172fa4ad96b372f0a (diff) | |
download | tk-02e336a3fe60cf9e3cc1d90d2d2d3fa98e1a3a5a.zip tk-02e336a3fe60cf9e3cc1d90d2d2d3fa98e1a3a5a.tar.gz tk-02e336a3fe60cf9e3cc1d90d2d2d3fa98e1a3a5a.tar.bz2 |
Type correctness fix, to stop compiler complaint.
Diffstat (limited to 'unix/tkUnixRFont.c')
-rw-r--r-- | unix/tkUnixRFont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tkUnixRFont.c b/unix/tkUnixRFont.c index deecceb..c3ece5e 100644 --- a/unix/tkUnixRFont.c +++ b/unix/tkUnixRFont.c @@ -810,10 +810,10 @@ Tk_DrawChars( void TkUnixSetXftClipRegion( - Region clipRegion) /* The clipping region to install. */ + TkRegion clipRegion) /* The clipping region to install. */ { ThreadSpecificData *tsdPtr = (ThreadSpecificData *) Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData)); - tsdPtr->clipRegion = clipRegion; + tsdPtr->clipRegion = (Region) clipRegion; } |