diff options
author | chengyemao <chengyemao> | 2005-01-16 00:23:11 (GMT) |
---|---|---|
committer | chengyemao <chengyemao> | 2005-01-16 00:23:11 (GMT) |
commit | 755a33fa24ee2e9c505c528c743441fb070e6259 (patch) | |
tree | 82b67e8dc7b258ae244e01c7f5d66be5142bea87 /win/tkWinX.c | |
parent | 22b21c0af24682c2efdfcd6ac7c4263b445a9907 (diff) | |
download | tk-755a33fa24ee2e9c505c528c743441fb070e6259.zip tk-755a33fa24ee2e9c505c528c743441fb070e6259.tar.gz tk-755a33fa24ee2e9c505c528c743441fb070e6259.tar.bz2 |
Added TK_INFO message for use in an embedded window attachment protocol; modified TkpUseWindow to allow to attach to a legacy container with a warning; modified some return values of messages from an embedded window to differentiate a case of unprocessed
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 41cfc04..0b15aab 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.41 2005/01/07 15:18:04 chengyemao Exp $ + * RCS: @(#) $Id: tkWinX.c,v 1.42 2005/01/16 00:23:15 chengyemao Exp $ */ #include "tkWinInt.h" @@ -823,6 +823,7 @@ TkWinChildProc(hwnd, message, wParam, lParam) case TK_OVERRIDEREDIRECT: case TK_SETMENU: case TK_STATE: + case TK_INFO: result = TkWinEmbeddedEventProc(hwnd, message, wParam, lParam); break; |