diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-06-05 04:46:39 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-06-05 04:46:39 (GMT) |
commit | 01005ac615a6454ce1868948bf3757b1b45548c5 (patch) | |
tree | 4b1b6848a2a8f1b3f66d319e784c6d08ddc042ab /win/tkWinKey.c | |
parent | e93ba7872437b93eb96a97a853fd9d6d75690756 (diff) | |
parent | 4f18880eb6e1e3e3026f40b7a5ed081b3632e2a7 (diff) | |
download | tk-01005ac615a6454ce1868948bf3757b1b45548c5.zip tk-01005ac615a6454ce1868948bf3757b1b45548c5.tar.gz tk-01005ac615a6454ce1868948bf3757b1b45548c5.tar.bz2 |
Change XSetDashes signature and many others to match Xorg, needed for Cygwin
Diffstat (limited to 'win/tkWinKey.c')
-rw-r--r-- | win/tkWinKey.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/tkWinKey.c b/win/tkWinKey.c index 522bfba..daf2ecc 100644 --- a/win/tkWinKey.c +++ b/win/tkWinKey.c @@ -692,12 +692,13 @@ XGetModifierMapping( *---------------------------------------------------------------------- */ -void +int XFreeModifiermap( XModifierKeymap *modmap) { ckfree((char *) modmap->modifiermap); ckfree((char *) modmap); + return Success; } /* |