Index: Source/core/editing/Editor.cpp |
diff --git a/Source/core/editing/Editor.cpp b/Source/core/editing/Editor.cpp |
index d90b8333e80e28c61a282dc6da697621fea5db20..3a5b267c2ce48d940db5dc0414e26dd6eecf9f67 100644 |
--- a/Source/core/editing/Editor.cpp |
+++ b/Source/core/editing/Editor.cpp |
@@ -1147,12 +1147,6 @@ void Editor::computeAndSetTypingStyle(StylePropertySet* style, EditAction editin |
frame().selection().setTypingStyle(typingStyle); |
} |
-bool Editor::findString(const String& target, bool forward, bool caseFlag, bool wrapFlag, bool startInSelection) |
-{ |
- FindOptions options = (forward ? 0 : Backwards) | (caseFlag ? 0 : CaseInsensitive) | (wrapFlag ? WrapAround : 0) | (startInSelection ? StartInSelection : 0); |
- return findString(target, options); |
-} |
- |
bool Editor::findString(const String& target, FindOptions options) |
{ |
VisibleSelection selection = frame().selection().selection(); |