diff options
| author | nyamatongwe <unknown> | 2011-05-26 09:38:38 +1000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2011-05-26 09:38:38 +1000 |
| commit | 44346596c462f06a8169ae4c8dd2295e2fb95765 (patch) | |
| tree | 981cf923a012de18a205bccd1f4d52848658ad32 | |
| parent | 76e297768ce60c6f9188793a4760be9c25362e65 (diff) | |
| download | scintilla-mirror-44346596c462f06a8169ae4c8dd2295e2fb95765.tar.gz | |
Made 64-bit type safe.
| -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 434ab942d..1bc062ced 100644 --- a/cocoa/ScintillaCocoa.mm +++ b/cocoa/ScintillaCocoa.mm @@ -396,7 +396,7 @@ sptr_t ScintillaCocoa::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPar return 0; default: - unsigned int r = ScintillaBase::WndProc(iMessage, wParam, lParam); + sptr_t r = ScintillaBase::WndProc(iMessage, wParam, lParam); return r; } |
