| commit | e73b17d018318d0e257ceb8409c4f0e0209a6a1d | [log] [tgz] |
|---|---|---|
| author | Aric Stewart <aric@codeweavers.com> | Wed Jun 24 17:29:51 2009 +0900 |
| committer | Alexandre Julliard <julliard@winehq.org> | Wed Jun 24 11:28:14 2009 +0200 |
| tree | e87663dd8cc1450b9787551ea7696be5b4533a2c | |
| parent | 2dd5a3bea2fbcc049132708cc4859126ab2a03cb [diff] [blame] |
msctf: Context initialization happens before OnPushContext sink.
diff --git a/dlls/msctf/documentmgr.c b/dlls/msctf/documentmgr.c index c7aa820..f5ea71f 100644 --- a/dlls/msctf/documentmgr.c +++ b/dlls/msctf/documentmgr.c
@@ -145,8 +145,8 @@ This->contextStack[1] = This->contextStack[0]; This->contextStack[0] = check; - ITfThreadMgrEventSink_OnPushContext(This->ThreadMgrSink,check); Context_Initialize(check, iface); + ITfThreadMgrEventSink_OnPushContext(This->ThreadMgrSink,check); return S_OK; }