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

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:24:53 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 605a5c2a7f60399e00086c4c8d495400dc8cfda4
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jul 17 04:26:54 2002 +0000

    WebKit:
    
            * History.subproj/WebBackForwardList.m: Replace MyCompanyName with Apple Computer.
            (-[WebBackForwardList init]): Fix strange [super init] logic to be standard.
            * History.subproj/WebHistoryItem.h: Replace MyCompanyName with Apple Computer.
            * Misc.subproj/WebDownloadHandler.h: Replace MyCompanyName with Apple Computer.
    
    WebBrowser:
    
            * LocationTextField.h: Replace MyCompanyName with Apple Computer.
            * LocationTextField.m: Replace MyCompanyName with Apple Computer.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1580 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index d7f4943..367051c 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,12 @@
 2002-07-16  Darin Adler  <darin at apple.com>
 
+        * History.subproj/WebBackForwardList.m: Replace MyCompanyName with Apple Computer.
+        (-[WebBackForwardList init]): Fix strange [super init] logic to be standard.
+        * History.subproj/WebHistoryItem.h: Replace MyCompanyName with Apple Computer.
+        * Misc.subproj/WebDownloadHandler.h: Replace MyCompanyName with Apple Computer.
+
+2002-07-16  Darin Adler  <darin at apple.com>
+
 	- fixed 2997891 -- Alexander confused about base page URL for relative links
 
         * WebCoreSupport.subproj/WebSubresourceClient.m:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index d7f4943..367051c 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,12 @@
 2002-07-16  Darin Adler  <darin at apple.com>
 
+        * History.subproj/WebBackForwardList.m: Replace MyCompanyName with Apple Computer.
+        (-[WebBackForwardList init]): Fix strange [super init] logic to be standard.
+        * History.subproj/WebHistoryItem.h: Replace MyCompanyName with Apple Computer.
+        * Misc.subproj/WebDownloadHandler.h: Replace MyCompanyName with Apple Computer.
+
+2002-07-16  Darin Adler  <darin at apple.com>
+
 	- fixed 2997891 -- Alexander confused about base page URL for relative links
 
         * WebCoreSupport.subproj/WebSubresourceClient.m:
diff --git a/WebKit/History.subproj/WebBackForwardList.m b/WebKit/History.subproj/WebBackForwardList.m
index cdaa5cd..e0c2fb3 100644
--- a/WebKit/History.subproj/WebBackForwardList.m
+++ b/WebKit/History.subproj/WebBackForwardList.m
@@ -3,7 +3,7 @@
 //  WebKit
 //
 //  Created by Kenneth Kocienda on Thu Nov 29 2001.
-//  Copyright (c) 2001 __MyCompanyName__. All rights reserved.
+//  Copyright (c) 2001 Apple Computer, Inc. All rights reserved.
 //
 
 #import "WebBackForwardList.h"
@@ -15,8 +15,8 @@
 
 -(id)init
 {
-    if (self != [super init])
-    {
+    self = [super init];
+    if (!self) {
         return nil;
     }
     
diff --git a/WebKit/History.subproj/WebHistoryItem.h b/WebKit/History.subproj/WebHistoryItem.h
index c994480..931e2a3 100644
--- a/WebKit/History.subproj/WebHistoryItem.h
+++ b/WebKit/History.subproj/WebHistoryItem.h
@@ -3,7 +3,7 @@
 //  WebKit
 //
 //  Created by Kenneth Kocienda on Thu Nov 29 2001.
-//  Copyright (c) 2001 __MyCompanyName__. All rights reserved.
+//  Copyright (c) 2001 Apple Computer, Inc. All rights reserved.
 //
 
 #import <Cocoa/Cocoa.h>
@@ -21,8 +21,8 @@
 -(id)initWithURL:(NSURL *)url title:(NSString *)title;
 -(id)initWithURL:(NSURL *)url title:(NSString *)title image:(NSImage *)image;
 
-- (NSDictionary *)dictionaryRepresentation;
-- (id)initFromDictionaryRepresentation:(NSDictionary *)dict;
+-(NSDictionary *)dictionaryRepresentation;
+-(id)initFromDictionaryRepresentation:(NSDictionary *)dict;
 
 -(NSURL *)url;
 -(NSString *)title;
diff --git a/WebKit/Misc.subproj/WebDownloadHandler.h b/WebKit/Misc.subproj/WebDownloadHandler.h
index 27505a7..fefa820 100644
--- a/WebKit/Misc.subproj/WebDownloadHandler.h
+++ b/WebKit/Misc.subproj/WebDownloadHandler.h
@@ -3,13 +3,15 @@
 //  WebKit
 //
 //  Created by Chris Blumenberg on Thu Apr 11 2002.
-//  Copyright (c) 2002 __MyCompanyName__. All rights reserved.
+//  Copyright (c) 2002 Apple computer, Inc. All rights reserved.
 //
 
 #import <Foundation/Foundation.h>
-#import <WebKit/WebDataSource.h>
 
- at interface WebDownloadHandler : NSObject {
+ at class WebDataSource;
+
+ at interface WebDownloadHandler : NSObject
+{
     WebDataSource *dataSource;
     NSFileHandle *fileHandle;
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list