diff options
| author | nyamatongwe <unknown> | 2013-01-10 10:49:34 +1100 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2013-01-10 10:49:34 +1100 |
| commit | afbd9cb251631e473247477c7798cd9ff69fa408 (patch) | |
| tree | 01d35935fae80dd4f66ebd27e1485638eb465a27 | |
| parent | 32776d4e53abbe0a1a41e811798bbc9dcd569b11 (diff) | |
| download | scintilla-mirror-afbd9cb251631e473247477c7798cd9ff69fa408.tar.gz | |
Removed dead stores.
| -rw-r--r-- | cocoa/ScintillaView.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cocoa/ScintillaView.mm b/cocoa/ScintillaView.mm index 0d3bb4540..5ab86ee80 100644 --- a/cocoa/ScintillaView.mm +++ b/cocoa/ScintillaView.mm @@ -1700,7 +1700,7 @@ static void notification(intptr_t windowid, unsigned int iMessage, uintptr_t wPa break; replaceCount++; - result = [ScintillaView directCall: self + [ScintillaView directCall: self message: SCI_REPLACETARGET wParam: targetLength lParam: (sptr_t) replacement]; @@ -1722,7 +1722,7 @@ static void notification(intptr_t windowid, unsigned int iMessage, uintptr_t wPa if (replaceCount > 0) { - result = [ScintillaView directCall: self + [ScintillaView directCall: self message: SCI_REPLACETARGET wParam: targetLength lParam: (sptr_t) replacement]; |
