Changeset 1913

Show
Ignore:
Timestamp:
08/26/02 07:27:34 (6 years ago)
Author:
sullivan
Message:

WebKit:

  • fixed bug where dragging a separator in the Bookmarks window would hit an assertion.
  • Bookmarks.subproj/WebBookmarkSeparator.m: (-initWithGroup:): Removed obsolete assertion that group is not nil.
  • Bookmarks.subproj/WebBookmarkLeaf.m: (-initWithTitle:group:): Removed a similar obsolete assertion here.
  • Bookmarks.subproj/WebBookmarkList.m: (-initWithTitle:group:): Removed a similar obsolete assertion here.

WebBrowser:

  • fixed bug where new separator would not be scrolled into view if necessary.
  • BookmarksController.m: (-_focusOnNewlyCreatedBookmark:): Scroll to reveal new item.
Location:
trunk/WebKit
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/Bookmarks.subproj/WebBookmarkLeaf.m

    r1849 r1913  
    3333                  group:(WebBookmarkGroup *)group; 
    3434{ 
    35     WEBKIT_ASSERT_VALID_ARG (group, group != nil); 
    36      
    3735    [self init]; 
    3836 
  • trunk/WebKit/Bookmarks.subproj/WebBookmarkList.m

    r1820 r1913  
    2222              group:(WebBookmarkGroup *)group 
    2323{ 
    24     WEBKIT_ASSERT_VALID_ARG (group, group != nil); 
    25      
    2624    [super init]; 
    2725 
  • trunk/WebKit/Bookmarks.subproj/WebBookmarkSeparator.m

    r1820 r1913  
    1717- (id)initWithGroup:(WebBookmarkGroup *)group 
    1818{ 
    19     WEBKIT_ASSERT_VALID_ARG (group, group != nil); 
    20  
    2119    [super init]; 
    2220    [self _setGroup:group]; 
  • trunk/WebKit/ChangeLog

    r1911 r1913  
     12002-08-26  John Sullivan  <sullivan@apple.com> 
     2         
     3        - fixed bug where dragging a separator in the Bookmarks window 
     4        would hit an assertion. 
     5 
     6        * Bookmarks.subproj/WebBookmarkSeparator.m: 
     7        (-[WebBookmarkSeparator initWithGroup:]): Removed obsolete 
     8        assertion that group is not nil. 
     9        * Bookmarks.subproj/WebBookmarkLeaf.m: 
     10        (-[WebBookmarkLeaf initWithTitle:group:]): 
     11        Removed a similar obsolete assertion here. 
     12        * Bookmarks.subproj/WebBookmarkList.m: 
     13        (-[WebBookmarkList initWithTitle:group:]): 
     14        Removed a similar obsolete assertion here. 
     15 
    1162002-08-23  Darin Adler  <darin@apple.com> 
    217 
  • trunk/WebKit/ChangeLog-2002-12-03

    r1911 r1913  
     12002-08-26  John Sullivan  <sullivan@apple.com> 
     2         
     3        - fixed bug where dragging a separator in the Bookmarks window 
     4        would hit an assertion. 
     5 
     6        * Bookmarks.subproj/WebBookmarkSeparator.m: 
     7        (-[WebBookmarkSeparator initWithGroup:]): Removed obsolete 
     8        assertion that group is not nil. 
     9        * Bookmarks.subproj/WebBookmarkLeaf.m: 
     10        (-[WebBookmarkLeaf initWithTitle:group:]): 
     11        Removed a similar obsolete assertion here. 
     12        * Bookmarks.subproj/WebBookmarkList.m: 
     13        (-[WebBookmarkList initWithTitle:group:]): 
     14        Removed a similar obsolete assertion here. 
     15 
    1162002-08-23  Darin Adler  <darin@apple.com> 
    217