diff options
author | Zufu Liu <unknown> | 2019-06-30 08:34:46 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2019-06-30 08:34:46 +1000 |
commit | d7e2afd1f88bf735b010461ff505470bfa468547 (patch) | |
tree | 0305fc8fd126909438c6da42cf90d53a3201b8c2 /src/ScintillaBase.h | |
parent | 24bff87107d89a09e724993e053e7151945596e8 (diff) | |
download | scintilla-mirror-d7e2afd1f88bf735b010461ff505470bfa468547.tar.gz |
Bug [#2038]. Source of input reported in SCN_CHARADDED.
This may be SC_CHARACTERSOURCE_DIRECT_INPUT, SC_CHARACTERSOURCE_TENTATIVE_INPUT,
or SC_CHARACTERSOURCE_IME_RESULT.
Diffstat (limited to 'src/ScintillaBase.h')
-rw-r--r-- | src/ScintillaBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h index d28e47c4e..fc4315e6d 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -63,7 +63,7 @@ protected: // This method is deprecated, use InsertCharacter instead. The treatAsDBCS parameter is no longer used. virtual void AddCharUTF(const char *s, unsigned int len, bool treatAsDBCS=false); - void InsertCharacter(std::string_view sv) override; + void InsertCharacter(std::string_view sv, CharacterSource charSource) override; void Command(int cmdId); void CancelModes() override; int KeyCommand(unsigned int iMessage) override; |