[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:55:27 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 9a7a5af86d3b67414b021d425f7322cc8475322f
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 5 17:23:41 2003 +0000

    	- fixed 3409011 -- the graphics views palette does not open
    
            Reviewed by Maciej
    
            * WebView.subproj/WebPreferences.m:
            (+[WebPreferences _removeReferenceForIdentifier:]):
    	special-case nil, which is a magic initial identifier already
    	special-cased in the other mutator
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4944 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index e8d7411..1b7c72c 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,14 @@
+2003-09-04  John Sullivan  <sullivan at apple.com>
+
+	- fixed 3409011 -- the graphics views palette does not open
+
+        Reviewed by Maciej
+
+        * WebView.subproj/WebPreferences.m:
+        (+[WebPreferences _removeReferenceForIdentifier:]):
+	special-case nil, which is a magic initial identifier already
+	special-cased in the other mutator
+
 2003-09-05  Maciej Stachowiak  <mjs at apple.com>
 
         Reviewed by Darin.
diff --git a/WebKit/WebView.subproj/WebPreferences.m b/WebKit/WebView.subproj/WebPreferences.m
index c0bc565..2c80171 100644
--- a/WebKit/WebView.subproj/WebPreferences.m
+++ b/WebKit/WebView.subproj/WebPreferences.m
@@ -585,7 +585,9 @@ static NSMutableDictionary *webPreferencesInstances = nil;
 
 + (void)_removeReferenceForIdentifier:(NSString *)ident
 {
-    [webPreferencesInstances performSelector:@selector(_web_checkLastReferenceForIdentifier:) withObject: [self _concatenateKeyWithIBCreatorID:ident] afterDelay:.1];
+    if (ident != nil) {
+        [webPreferencesInstances performSelector:@selector(_web_checkLastReferenceForIdentifier:) withObject: [self _concatenateKeyWithIBCreatorID:ident] afterDelay:.1];
+    }
 }
 
 - (void)_postPreferencesChangesNotification

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list