diff options
author | nyamatongwe <devnull@localhost> | 2001-10-02 01:36:31 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-10-02 01:36:31 +0000 |
commit | bec26dd4526636a5078b4790a1287de57ced60ad (patch) | |
tree | 494e9cbebc552974ef864092d790b0734a4015b6 | |
parent | 9895dc493bb283e496360428d8ac96a9d72487d6 (diff) | |
download | scintilla-mirror-bec26dd4526636a5078b4790a1287de57ced60ad.tar.gz |
Reinstated WM_GETTEXT as an alias of SCI_GETTEXT to allow some tools to
grab the contents of a Scintilla control.
-rw-r--r-- | win32/ScintillaWin.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index ba7ceaeb1..77dd71288 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -463,6 +463,7 @@ static unsigned int SciMessageFromEM(unsigned int iMessage) { case WM_CLEAR: return SCI_CLEAR; case WM_COPY: return SCI_COPY; case WM_CUT: return SCI_CUT; + case WM_GETTEXT: return SCI_GETTEXT; case WM_GETTEXTLENGTH: return SCI_GETTEXTLENGTH; case WM_PASTE: return SCI_PASTE; case WM_UNDO: return SCI_UNDO; |