diff options
author | nyamatongwe <devnull@localhost> | 2005-10-26 09:54:49 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-10-26 09:54:49 +0000 |
commit | 2b5d958fb2427d2fc53cf1da4e048daa04d98507 (patch) | |
tree | 6500624bd9da2f0f64e8b755b8bd14ea1c6005e0 /src | |
parent | 10a7c2d433ac79ff2808c0058d8216b872f76e34 (diff) | |
download | scintilla-mirror-2b5d958fb2427d2fc53cf1da4e048daa04d98507.tar.gz |
Part of 64 bit patch making NotifyMacroRecord have same arguments in
header and implementation.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 254c7e18d..2b100fd49 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -3777,7 +3777,7 @@ void Editor::NotifyDeleted(Document *, void *) { /* Do nothing */ } -void Editor::NotifyMacroRecord(unsigned int iMessage, unsigned long wParam, long lParam) { +void Editor::NotifyMacroRecord(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { // Enumerates all macroable messages switch (iMessage) { |