[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

sullivan sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:34:34 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 6955e3450c7d0904af6578a2af02ac73a56465f6
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Aug 26 14:27:34 2002 +0000

    WebKit:
    
    	- fixed bug where dragging a separator in the Bookmarks window
    	would hit an assertion.
    
            * Bookmarks.subproj/WebBookmarkSeparator.m:
            (-[WebBookmarkSeparator initWithGroup:]): Removed obsolete
    	assertion that group is not nil.
            * Bookmarks.subproj/WebBookmarkLeaf.m:
            (-[WebBookmarkLeaf initWithTitle:group:]):
    	Removed a similar obsolete assertion here.
            * Bookmarks.subproj/WebBookmarkList.m:
            (-[WebBookmarkList initWithTitle:group:]):
    	Removed a similar obsolete assertion here.
    
    WebBrowser:
    
    	- fixed bug where new separator would not be scrolled
    	into view if necessary.
    
            * BookmarksController.m:
            (-[BookmarksController _focusOnNewlyCreatedBookmark:]):
    	Scroll to reveal new item.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1913 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/Bookmarks.subproj/WebBookmarkLeaf.m b/WebKit/Bookmarks.subproj/WebBookmarkLeaf.m
index 4248acc..f53e617 100644
--- a/WebKit/Bookmarks.subproj/WebBookmarkLeaf.m
+++ b/WebKit/Bookmarks.subproj/WebBookmarkLeaf.m
@@ -32,8 +32,6 @@
                 iconURL:(NSURL *)iconURL
                   group:(WebBookmarkGroup *)group;
 {
-    WEBKIT_ASSERT_VALID_ARG (group, group != nil);
-    
     [self init];
 
     // Since our URLString may not be valid for creating an NSURL object,
diff --git a/WebKit/Bookmarks.subproj/WebBookmarkList.m b/WebKit/Bookmarks.subproj/WebBookmarkList.m
index cf63485..ce2c1f3 100644
--- a/WebKit/Bookmarks.subproj/WebBookmarkList.m
+++ b/WebKit/Bookmarks.subproj/WebBookmarkList.m
@@ -21,8 +21,6 @@
 - (id)initWithTitle:(NSString *)title
               group:(WebBookmarkGroup *)group
 {
-    WEBKIT_ASSERT_VALID_ARG (group, group != nil);
-    
     [super init];
 
     _title = [title copy];
diff --git a/WebKit/Bookmarks.subproj/WebBookmarkSeparator.m b/WebKit/Bookmarks.subproj/WebBookmarkSeparator.m
index b41c4e0..834c0c9 100644
--- a/WebKit/Bookmarks.subproj/WebBookmarkSeparator.m
+++ b/WebKit/Bookmarks.subproj/WebBookmarkSeparator.m
@@ -16,8 +16,6 @@
 
 - (id)initWithGroup:(WebBookmarkGroup *)group
 {
-    WEBKIT_ASSERT_VALID_ARG (group, group != nil);
-
     [super init];
     [self _setGroup:group];
 
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 2c8732e..9d661d2 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,18 @@
+2002-08-26  John Sullivan  <sullivan at apple.com>
+	
+	- fixed bug where dragging a separator in the Bookmarks window
+	would hit an assertion.
+
+        * Bookmarks.subproj/WebBookmarkSeparator.m:
+        (-[WebBookmarkSeparator initWithGroup:]): Removed obsolete
+	assertion that group is not nil.
+        * Bookmarks.subproj/WebBookmarkLeaf.m:
+        (-[WebBookmarkLeaf initWithTitle:group:]):
+	Removed a similar obsolete assertion here.
+        * Bookmarks.subproj/WebBookmarkList.m:
+        (-[WebBookmarkList initWithTitle:group:]):
+	Removed a similar obsolete assertion here.
+
 2002-08-23  Darin Adler  <darin at apple.com>
 
         * WebView.subproj/WebFrame.m: (-[WebFrame reset]): Remove unneeded call to _reset.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 2c8732e..9d661d2 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,18 @@
+2002-08-26  John Sullivan  <sullivan at apple.com>
+	
+	- fixed bug where dragging a separator in the Bookmarks window
+	would hit an assertion.
+
+        * Bookmarks.subproj/WebBookmarkSeparator.m:
+        (-[WebBookmarkSeparator initWithGroup:]): Removed obsolete
+	assertion that group is not nil.
+        * Bookmarks.subproj/WebBookmarkLeaf.m:
+        (-[WebBookmarkLeaf initWithTitle:group:]):
+	Removed a similar obsolete assertion here.
+        * Bookmarks.subproj/WebBookmarkList.m:
+        (-[WebBookmarkList initWithTitle:group:]):
+	Removed a similar obsolete assertion here.
+
 2002-08-23  Darin Adler  <darin at apple.com>
 
         * WebView.subproj/WebFrame.m: (-[WebFrame reset]): Remove unneeded call to _reset.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list