Changeset 15110
- Timestamp:
- 06/30/06 11:56:59 (4 years ago)
- Location:
- trunk/WebKit
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
WebView/WebView.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebKit/ChangeLog
r15108 r15110 1 2006-06-30 Timothy Hatcher <timothy@apple.com> 2 3 Reviewed by Darin. 4 5 Only enable shouldCloseWithWindow when ObjC GC is enabled. 6 This maintains backwards compatibility with applications 7 that expect a WebView to be usable after the window closes. 8 9 * WebView/WebView.m: 10 (-[WebViewPrivate init]): 11 1 12 2006-06-30 Timothy Hatcher <timothy@apple.com> 2 13 -
trunk/WebKit/WebView/WebView.m
r15108 r15110 379 379 dashboardBehaviorAllowWheelScrolling = YES; 380 380 tabKeyCyclesThroughElements = YES; 381 shouldCloseWithWindow = YES;381 shouldCloseWithWindow = objc_collecting_enabled(); 382 382 383 383 return self;