From 19ef687334bb39673154bc9d0e4fee6c98f49024 Mon Sep 17 00:00:00 2001 From: Allan Odgaard Date: Mon, 17 Sep 2012 23:39:36 +0200 Subject: [PATCH] Preserve arguments for recursive call to self --- Frameworks/editor/src/editor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Frameworks/editor/src/editor.cc b/Frameworks/editor/src/editor.cc index 8b937ff3..2bb44eef 100644 --- a/Frameworks/editor/src/editor.cc +++ b/Frameworks/editor/src/editor.cc @@ -857,8 +857,8 @@ namespace ng case kReplaceAndFind: { - perform(kReplace); - perform(kFindNext); + perform(kReplace, layout, indentCorrections); + perform(kFindNext, layout, indentCorrections); } break;