diff --git a/WeaselTSF/CandidateList.cpp b/WeaselTSF/CandidateList.cpp index 3b0fe71c9..561a61c12 100644 --- a/WeaselTSF/CandidateList.cpp +++ b/WeaselTSF/CandidateList.cpp @@ -204,7 +204,7 @@ STDMETHODIMP CandidateList::Finalize(void) STDMETHODIMP CandidateList::Abort(void) { - _tsf->_AbordComposition(true); + _tsf->_AbortComposition(true); return S_OK; } diff --git a/include/WeaselIPC.h b/include/WeaselIPC.h index a48fbfa82..7f5dddecf 100644 --- a/include/WeaselIPC.h +++ b/include/WeaselIPC.h @@ -178,6 +178,8 @@ namespace weasel return pipe_name; } pipe_name += L"\\\\.\\pipe\\"; + pipe_name += username.get(); + pipe_name += L"\\"; pipe_name += WEASEL_IPC_PIPE_NAME; return pipe_name; }