diff options
| author | nyamatongwe <devnull@localhost> | 2011-05-21 11:52:08 +1000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2011-05-21 11:52:08 +1000 |
| commit | 47dd6f2e276c96d48276c74badb04a1edf68eb0b (patch) | |
| tree | 7993bc4ea442054d793510285d0011323192c7d6 /cocoa/ScintillaCocoa.mm | |
| parent | 33bf1af7b71e313a380559b0bbd59e86eef9331b (diff) | |
| download | scintilla-mirror-47dd6f2e276c96d48276c74badb04a1edf68eb0b.tar.gz | |
64-bit fixes.
Diffstat (limited to 'cocoa/ScintillaCocoa.mm')
| -rw-r--r-- | cocoa/ScintillaCocoa.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm index 08c827b38..434ab942d 100644 --- a/cocoa/ScintillaCocoa.mm +++ b/cocoa/ScintillaCocoa.mm @@ -1178,7 +1178,7 @@ void ScintillaCocoa::NotifyParent(SCNotification scn) if (notifyProc != NULL) { scn.nmhdr.hwndFrom = (void*) this; - scn.nmhdr.idFrom = (unsigned int) wMain.GetID(); + scn.nmhdr.idFrom = (uintptr_t) wMain.GetID(); notifyProc(notifyObj, WM_NOTIFY, (uintptr_t) 0, (uintptr_t) &scn); } } |
