[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 07:22:03 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 77004ed13ae2c06486111f286bda3d9833153b36
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 27 19:31:52 2003 +0000

    	- fixed 3156744 -- REGRESSION: Renaming bookmarks dragged
    	into bookmark bar does not work at first
    
            Reviewed by Darin
    
            * Bookmarks.subproj/WebBookmarkList.m:
            (-[WebBookmarkList insertChild:atIndex:]):
    	was adding self to its own group (a no-op), instead of adding
    	the new child to self's group. This was a typo from the
    	refactoring to fix 3152427.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3462 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/Bookmarks.subproj/WebBookmarkList.m b/WebKit/Bookmarks.subproj/WebBookmarkList.m
index 1621646..bd5cea0 100644
--- a/WebKit/Bookmarks.subproj/WebBookmarkList.m
+++ b/WebKit/Bookmarks.subproj/WebBookmarkList.m
@@ -207,7 +207,7 @@
 
     [_list insertObject:bookmark atIndex:index];
     [bookmark _setParent:self];
-    [[self group] _addBookmark:self];
+    [[self group] _addBookmark:bookmark];
 
     [[self group] _bookmarkChildren:[NSArray arrayWithObject:bookmark] wereAddedToParent:self]; 
 }
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 524c35c..a6ab0a8 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,16 @@
+2003-01-27  John Sullivan  <sullivan at apple.com>
+
+	- fixed 3156744 -- REGRESSION: Renaming bookmarks dragged 
+	into bookmark bar does not work at first
+
+        Reviewed by Darin
+
+        * Bookmarks.subproj/WebBookmarkList.m:
+        (-[WebBookmarkList insertChild:atIndex:]):
+	was adding self to its own group (a no-op), instead of adding
+	the new child to self's group. This was a typo from the
+	refactoring to fix 3152427.
+
 2003-01-27  Chris Blumenberg  <cblu at apple.com>
 
         * English.lproj/StringsNotToBeLocalized.txt: Updated for changes I previously made.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list