aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/HanjaDic.cxx
AgeCommit message (Collapse)AuthorFilesLines
2023-06-28Replace c-style cast with c++ explicit reinterpret_cast.Neil1-1/+1
2022-03-03Bug [#2295] Fix warnings from Coverity and Visual C++.Neil1-15/+37
Replace UniqueBSTR which was a unique_ptr with ScopedBSTR as Coverity has strict rules about the BSTR type and would show COM.BSTR.CONV for all attempts at wrapping BSTR with unique_ptr. Includes code from Zufu Liu.
2021-11-22Move common Win32 functions for releasing IUnknown* and DLL function access intoNeil1-13/+1
new WinType.h header.
2021-11-22Bug [#2295] Fix potential memory leak with Korean language input.Zufu Liu1-57/+65
2021-08-28Delete standard operations on classes that can not be copied.Neil1-0/+6
2021-06-05Bug [#2259]. Fix gcc link-time-optimization compilation.Neil1-0/+2
2021-05-28Better exception handling for noexcept methods. More accurate noexcept marking.Neil1-1/+6
2021-05-24Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.hNeil1-1/+1
and ScintillaStructures.h using scoped enumerations. Use these headers instead of Scintilla.h internally. External definitions go in the Scintilla namespace and internal definitio0ns in Scintilla::Internal.
2019-05-08Use value-initialization and nullptr (for true pointers) to avoid 'using NULL'Neil1-2/+2
warnings.
2018-05-14Include <string_view> to allow future use in Platform interface and Unicode.Neil1-0/+1
2017-09-11The Scintilla namespace is always active for internal symbols and for the lexerNeil1-4/+0
interfaces ILexer4 and IDocument.
2017-04-06Added const where possible.Neil1-1/+1
2017-03-04Add include to allow #6138 to build on Windows.Neil1-0/+2
2015-04-21Fix link error when SCI_NAMESPACE used.Neil1-1/+4
From Stefan Küng.
2015-03-12More efficient conversion to Hangul.Neil1-18/+22
From johnsonj.
2015-02-22Avoid warnings about uninitialised field.Neil1-1/+1
2015-02-22Implement VK_HANJA for Korean on Windows.Neil1-0/+122