diff options
author | nyamatongwe <devnull@localhost> | 2013-01-10 10:49:34 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2013-01-10 10:49:34 +1100 |
commit | 39d64d47c105eaf4d7a54163cb43a29da946ebb0 (patch) | |
tree | ed59252005767d7543cafd022ef9515a278adeee | |
parent | 03d7d31dea6b054b7e8d2fcb370249a7c3c8dbcd (diff) | |
download | scintilla-mirror-39d64d47c105eaf4d7a54163cb43a29da946ebb0.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]; |