diff options
author | nyamatongwe <unknown> | 2000-07-15 07:39:02 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-07-15 07:39:02 +0000 |
commit | fbc8d3a114b6fdf12dfe6f56e3893f935dcb74c3 (patch) | |
tree | 82c3a4e690d961ad4fc9d74a8ca09dc44f925d4e /src/ScintillaBase.h | |
parent | 610b069a39986a922b2281bfb9c8a9d07561cafc (diff) | |
download | scintilla-mirror-fbc8d3a114b6fdf12dfe6f56e3893f935dcb74c3.tar.gz |
Fixed problem with CancelModes killing drag and drop by setting empty
selection.
On GTK+ double click GTK+ events are ignored as this led to prblems
in primary selection code.
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 2e7402a1c..23d31dfd1 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -47,7 +47,7 @@ protected: virtual void AddCharUTF(char *s, unsigned int len); void Command(int cmdId); - virtual void CancelModes(); + virtual void CancelModes(); virtual int KeyCommand(UINT iMessage); void AutoCompleteStart(int lenEntered, const char *list); |