From afbd9cb251631e473247477c7798cd9ff69fa408 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Thu, 10 Jan 2013 10:49:34 +1100 Subject: Removed dead stores. --- cocoa/ScintillaView.mm | 4 ++-- 1 file 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]; -- cgit v1.2.3