diff options
author | nijtmans <nijtmans@noemail.net> | 2010-03-12 13:02:35 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2010-03-12 13:02:35 (GMT) |
commit | ea4a8ae1275c63884d6ece42e0c9c1b8d6898e21 (patch) | |
tree | bb6ddc1254faf5843d0d0c100b1065c508dd0302 /win/tkWinInt.h | |
parent | be93f8ee925914b7630da55c8e4fded821f24c1d (diff) | |
download | tk-ea4a8ae1275c63884d6ece42e0c9c1b8d6898e21.zip tk-ea4a8ae1275c63884d6ece42e0c9c1b8d6898e21.tar.gz tk-ea4a8ae1275c63884d6ece42e0c9c1b8d6898e21.tar.bz2 |
[Bug 2956548] TkpButtonSetDefaults only initializes one button type
Fix various gcc warnings, all backported from Tk 8.6
VC6++ does not have SPI_SETKEYBOARDCUES
FossilOrigin-Name: a891c24d0a62a5606f4aec56244b76e9a8c4d9de
Diffstat (limited to 'win/tkWinInt.h')
-rw-r--r-- | win/tkWinInt.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win/tkWinInt.h b/win/tkWinInt.h index 813c145..6d20f96 100644 --- a/win/tkWinInt.h +++ b/win/tkWinInt.h @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinInt.h,v 1.31.2.1 2009/12/02 22:20:02 nijtmans Exp $ + * RCS: @(#) $Id: tkWinInt.h,v 1.31.2.2 2010/03/12 13:02:36 nijtmans Exp $ */ #ifndef _TKWININT @@ -39,6 +39,9 @@ #ifndef WS_EX_TOOLWINDOW #define WS_EX_TOOLWINDOW 0x00000080L #endif +#ifndef SPI_SETKEYBOARDCUES +#define SPI_SETKEYBOARDCUES 0x100B +#endif /* * The TkWinDCState is used to save the state of a device context so that it |