aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index cf490c603..d10a8cee0 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -3677,13 +3677,9 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) {
case SCI_REPLACETARGET:
PLATFORM_ASSERT(lParam);
- return ReplaceTarget(wParam, reinterpret_cast<char *>(lParam));
-
- case SCI_REPLACETARGETCOUNTED:
- PLATFORM_ASSERT(lParam);
return ReplaceTarget(false, reinterpret_cast<char *>(lParam), wParam);
- case SCI_REPLACETARGETRECOUNTED:
+ case SCI_REPLACETARGETRE:
PLATFORM_ASSERT(lParam);
return ReplaceTarget(true, reinterpret_cast<char *>(lParam), wParam);