diff options
author | chengyemao <chengyemao> | 2004-12-20 15:30:43 (GMT) |
---|---|---|
committer | chengyemao <chengyemao> | 2004-12-20 15:30:43 (GMT) |
commit | c2085b76d7ca3b2537ab4e6296358e098fb06aca (patch) | |
tree | 4b4a7c0351384006b47bbb3fbad4b3edd6afcc31 /win/tkWinX.c | |
parent | 305b4b22eef2f33fc2f65c97556123af3efdde37 (diff) | |
download | tk-c2085b76d7ca3b2537ab4e6296358e098fb06aca.zip tk-c2085b76d7ca3b2537ab4e6296358e098fb06aca.tar.gz tk-c2085b76d7ca3b2537ab4e6296358e098fb06aca.tar.bz2 |
implemented overrideredirect for an embedded; corrected incorrect frame upper left x and y of an embedded toplevel
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 0b2f8b1..3285ec4 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.38 2004/12/20 01:13:14 chengyemao Exp $ + * RCS: @(#) $Id: tkWinX.c,v 1.39 2004/12/20 15:30:44 chengyemao Exp $ */ #include "tkWinInt.h" @@ -820,6 +820,7 @@ TkWinChildProc(hwnd, message, wParam, lParam) case TK_WITHDRAW: case TK_RAISEWINDOW: case TK_GETFRAMEWID: + case TK_OVERRIDEREDIRECT: result = TkWinEmbeddedEventProc(hwnd, message, wParam, lParam); break; |