diff options
author | chengyemao <chengyemao> | 2005-01-07 15:18:02 (GMT) |
---|---|---|
committer | chengyemao <chengyemao> | 2005-01-07 15:18:02 (GMT) |
commit | c763ca72e307a3c21c6221848e4e42f1dbefb3c7 (patch) | |
tree | 09f4bf18b0aef2a9c29eff89a45b4b08f67cc301 /win/tkWinX.c | |
parent | 60e0fa23ae1d3b202486d2427812fa3e65ecdae2 (diff) | |
download | tk-c763ca72e307a3c21c6221848e4e42f1dbefb3c7.zip tk-c763ca72e307a3c21c6221848e4e42f1dbefb3c7.tar.gz tk-c763ca72e307a3c21c6221848e4e42f1dbefb3c7.tar.bz2 |
Implemented TK_STAT message to support {wm state} for embedded window
Diffstat (limited to 'win/tkWinX.c')
-rw-r--r-- | win/tkWinX.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/tkWinX.c b/win/tkWinX.c index 2da11fa..41cfc04 100644 --- a/win/tkWinX.c +++ b/win/tkWinX.c @@ -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: tkWinX.c,v 1.40 2004/12/28 08:45:32 chengyemao Exp $ + * RCS: @(#) $Id: tkWinX.c,v 1.41 2005/01/07 15:18:04 chengyemao Exp $ */ #include "tkWinInt.h" @@ -822,6 +822,7 @@ TkWinChildProc(hwnd, message, wParam, lParam) case TK_GETFRAMEWID: case TK_OVERRIDEREDIRECT: case TK_SETMENU: + case TK_STATE: result = TkWinEmbeddedEventProc(hwnd, message, wParam, lParam); break; |