[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
rjw
rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:42:57 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit cb52a8e72c076a143ba176dff4841c90b2e15d5d
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu May 22 20:21:19 2003 +0000
Add _web to method in category name.
Fixed 3266102. @selector missing ":".
Reviewed by Darin.
* WebView.subproj/WebPreferences.m:
(+[WebPreferences _removeReferenceForIdentifier:]):
(-[NSMutableDictionary _web_checkLastReferenceForIdentifier:]):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4415 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 8e00983..20750ca 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,15 @@
+2003-05-22 Richard Williamson <rjw at apple.com>
+
+ Add _web to method in category name.
+
+ Fixed 3266102. @selector missing ":".
+
+ Reviewed by Darin.
+
+ * WebView.subproj/WebPreferences.m:
+ (+[WebPreferences _removeReferenceForIdentifier:]):
+ (-[NSMutableDictionary _web_checkLastReferenceForIdentifier:]):
+
2003-05-22 Darin Adler <darin at apple.com>
Reviewed by John.
diff --git a/WebKit/WebView.subproj/WebPreferences.m b/WebKit/WebView.subproj/WebPreferences.m
index 9498e26..81e5ac9 100644
--- a/WebKit/WebView.subproj/WebPreferences.m
+++ b/WebKit/WebView.subproj/WebPreferences.m
@@ -516,7 +516,7 @@ static NSMutableDictionary *webPreferencesInstances = nil;
+ (void)_removeReferenceForIdentifier:(NSString *)ident
{
- [webPreferencesInstances performSelector:@selector(_checkLastReferenceForIdentifier) withObject:ident afterDelay:.1];
+ [webPreferencesInstances performSelector:@selector(_web_checkLastReferenceForIdentifier:) withObject:ident afterDelay:.1];
}
- (void)_postPreferencesChangesNotification
@@ -530,7 +530,7 @@ static NSMutableDictionary *webPreferencesInstances = nil;
@end
@implementation NSMutableDictionary (WebPrivate)
-- (void)_checkLastReferenceForIdentifier:(NSString *)identifier
+- (void)_web_checkLastReferenceForIdentifier:(NSString *)identifier
{
WebPreferences *instance = [webPreferencesInstances objectForKey:identifier];
if ([instance retainCount] == 1)
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list