- re-fixed <rdar://problem/
4481198> REGRESSION (TOT): search results list in bookmarks view
remains when search text is deleted
* WebView/WebView.m:
(-[WebView searchFor:direction:caseSensitive:wrap:]):
I fixed this recently, but then broke it again by adding an early bail-out to this method. So
now I'm removing the early bail-out.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@13661
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-04-03 John Sullivan <sullivan@apple.com>
+
+ Reviewed by Tim Hatcher.
+
+ - re-fixed <rdar://problem/4481198> REGRESSION (TOT): search results list in bookmarks view
+ remains when search text is deleted
+
+ * WebView/WebView.m:
+ (-[WebView searchFor:direction:caseSensitive:wrap:]):
+ I fixed this recently, but then broke it again by adding an early bail-out to this method. So
+ now I'm removing the early bail-out.
+
2006-04-02 Trey Matteson <trey@usa.net>
Reviewed by Maciej.
- (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag
{
- if (![string length])
- return NO;
-
// Get the frame holding the selection, or start with the main frame
WebFrame *startFrame = [self _selectedOrMainFrame];