[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
mjs
mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:38:44 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit ecd15de31c728cdb01eaee0c86628af3cba853d8
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Apr 25 05:10:00 2003 +0000
Fixed build.
* Panels.subproj/WebStandardPanels.m:
(-[WebStandardPanels setUsesStandardAuthenticationPanel:]):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4185 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 03ea4b9..7253504 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,12 @@
2003-04-24 Maciej Stachowiak <mjs at apple.com>
+ Fixed build.
+
+ * Panels.subproj/WebStandardPanels.m:
+ (-[WebStandardPanels setUsesStandardAuthenticationPanel:]):
+
+2003-04-24 Maciej Stachowiak <mjs at apple.com>
+
Reviewed by Ken.
Updated for auth API changes.
diff --git a/WebKit/Panels.subproj/WebStandardPanels.m b/WebKit/Panels.subproj/WebStandardPanels.m
index e54857c..ef4dcd2 100644
--- a/WebKit/Panels.subproj/WebStandardPanels.m
+++ b/WebKit/Panels.subproj/WebStandardPanels.m
@@ -88,11 +88,11 @@ static void initSharedStandardPanels(void)
if (use) {
if (![self usesStandardAuthenticationPanel]) {
_privatePanels->panelAuthenticationHandler = [[WebPanelAuthenticationHandler alloc] init];
- [[NSURLCredentialStorage sharedCredentialStorage] addAuthenticationHandler:_privatePanels->panelAuthenticationHandler];
+ [[NSURLCredentialStorage sharedURLCredentialStorage] addAuthenticationHandler:_privatePanels->panelAuthenticationHandler];
}
} else {
if ([self usesStandardAuthenticationPanel]) {
- [[NSURLCredentialStorage sharedCredentialStorage] removeAuthenticationHandler:_privatePanels->panelAuthenticationHandler];
+ [[NSURLCredentialStorage sharedURLCredentialStorage] removeAuthenticationHandler:_privatePanels->panelAuthenticationHandler];
[_privatePanels->panelAuthenticationHandler release];
_privatePanels->panelAuthenticationHandler = nil;
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list