Changeset 22065 in webkit
- Timestamp:
- Jun 8, 2007, 12:17:49 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/WebCore/ChangeLog ¶
r22062 r22065 1 2007-06-07 Justin Garcia <justin.garcia@apple.com> 2 3 Reviewed by Tristan. 4 5 <rdar://problem/5250997> A crash occurs when selecting Undo Typing for a page that has been closed in tab 6 7 * WebCore.exp: Added clearUndoRedoOperations. 8 * page/Page.cpp: 9 (WebCore::Page::clearUndoRedoOperations): Added. 10 * page/Page.h: 11 1 12 2007-06-07 David Hyatt <hyatt@apple.com> 2 13 -
TabularUnified trunk/WebCore/WebCore.exp ¶
r21793 r22065 337 337 __ZN7WebCore4Page15backForwardListEv 338 338 __ZN7WebCore4Page16setDefersLoadingEb 339 __ZN7WebCore4Page23clearUndoRedoOperationsEv 339 340 __ZN7WebCore4Page6goBackEv 340 341 __ZN7WebCore4Page8goToItemEPNS_11HistoryItemENS_13FrameLoadTypeE -
TabularUnified trunk/WebCore/page/Page.cpp ¶
r21793 r22065 197 197 } 198 198 199 void Page::clearUndoRedoOperations() 200 { 201 m_editorClient->clearUndoRedoOperations(); 202 } 203 199 204 } // namespace WebCore -
TabularUnified trunk/WebCore/page/Page.h ¶
r21749 r22065 98 98 void setDefersLoading(bool); 99 99 bool defersLoading() const { return m_defersLoading; } 100 101 void clearUndoRedoOperations(); 100 102 101 103 #if PLATFORM(WIN) -
TabularUnified trunk/WebKit/ChangeLog ¶
r22063 r22065 1 2007-06-07 Justin Garcia <justin.garcia@apple.com> 2 3 Reviewed by Tristan. 4 5 <rdar://problem/5250997> A crash occurs when selecting Undo Typing for a page that has been closed in tab 6 7 * WebView/WebView.mm: 8 (-[WebView _clearUndoRedoOperations]): Added. 9 * WebView/WebViewPrivate.h: 10 1 11 2007-06-07 Oliver Hunt <oliver@apple.com> 2 12 -
TabularUnified trunk/WebKit/WebView/WebView.mm ¶
r21840 r22065 1530 1530 } 1531 1531 1532 - (void)_clearUndoRedoOperations 1533 { 1534 _private->page->clearUndoRedoOperations(); 1535 } 1536 1532 1537 @end 1533 1538 -
TabularUnified trunk/WebKit/WebView/WebViewPrivate.h ¶
r21793 r22065 408 408 - (void)handleAuthenticationForResource:(id)identifier challenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource; 409 409 410 - (void)_clearUndoRedoOperations; 411 410 412 @end 411 413
Note:
See TracChangeset
for help on using the changeset viewer.