diff options
author | nyamatongwe <unknown> | 2005-10-26 09:54:49 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-10-26 09:54:49 +0000 |
commit | 75ef73cea6502368508f74c8c770dac334449998 (patch) | |
tree | 6500624bd9da2f0f64e8b755b8bd14ea1c6005e0 /src | |
parent | 2d90437c0d0d57e530ab5d0c6a1a3571f881be9a (diff) | |
download | scintilla-mirror-75ef73cea6502368508f74c8c770dac334449998.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) { |