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


The following commit has been merged in the debian/unstable branch:
commit cf45f526569e22efdabd3cb2955a9ed51966084c
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Feb 8 02:20:11 2002 +0000

    Fixed deallocs.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@606 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/WebView.subproj/IFBaseWebController.mm b/WebKit/WebView.subproj/IFBaseWebController.mm
index 7b47090..6faac5c 100644
--- a/WebKit/WebView.subproj/IFBaseWebController.mm
+++ b/WebKit/WebView.subproj/IFBaseWebController.mm
@@ -91,6 +91,7 @@
 - (void)dealloc
 {
     [_controllerPrivate release];
+    [super dealloc];
 }
 
 - (void)setDirectsAllLinksToSystemBrowser: (BOOL)flag
diff --git a/WebKit/WebView.subproj/IFBaseWebControllerPrivate.mm b/WebKit/WebView.subproj/IFBaseWebControllerPrivate.mm
index 72383d8..6df308a 100644
--- a/WebKit/WebView.subproj/IFBaseWebControllerPrivate.mm
+++ b/WebKit/WebView.subproj/IFBaseWebControllerPrivate.mm
@@ -18,6 +18,7 @@
 - (void)dealloc
 {
     [mainFrame autorelease];
+    [super dealloc];
 }
 
 @end
diff --git a/WebKit/WebView.subproj/IFWebDataSource.mm b/WebKit/WebView.subproj/IFWebDataSource.mm
index e0a51a8..e3a7c02 100644
--- a/WebKit/WebView.subproj/IFWebDataSource.mm
+++ b/WebKit/WebView.subproj/IFWebDataSource.mm
@@ -52,6 +52,7 @@
 - (void)dealloc
 {
     [_dataSourcePrivate release];
+    [super dealloc];
 }
 
 #ifdef TENTATIVE_API
diff --git a/WebKit/WebView.subproj/IFWebDataSourcePrivate.mm b/WebKit/WebView.subproj/IFWebDataSourcePrivate.mm
index 71e6ac5..1ec5d7a 100644
--- a/WebKit/WebView.subproj/IFWebDataSourcePrivate.mm
+++ b/WebKit/WebView.subproj/IFWebDataSourcePrivate.mm
@@ -35,6 +35,8 @@
     [inputURL release];
     
     delete part;
+
+    [super dealloc];
 }
 
 @end
diff --git a/WebKit/WebView.subproj/IFWebFrame.m b/WebKit/WebView.subproj/IFWebFrame.m
index e06d912..a86af55 100644
--- a/WebKit/WebView.subproj/IFWebFrame.m
+++ b/WebKit/WebView.subproj/IFWebFrame.m
@@ -36,6 +36,7 @@
 - (void)dealloc
 {
     [_framePrivate release];
+    [super dealloc];
 }
 
 - (NSString *)name
diff --git a/WebKit/WebView.subproj/IFWebFramePrivate.mm b/WebKit/WebView.subproj/IFWebFramePrivate.mm
index 5012fd4..c197c37 100644
--- a/WebKit/WebView.subproj/IFWebFramePrivate.mm
+++ b/WebKit/WebView.subproj/IFWebFramePrivate.mm
@@ -13,6 +13,7 @@
     [name autorelease];
     [view autorelease];
     [dataSource autorelease];
+    [super dealloc];
 }
 
 - (NSString *)name { return name; }
diff --git a/WebKit/WebView.subproj/IFWebView.mm b/WebKit/WebView.subproj/IFWebView.mm
index b5269c6..d11535d 100644
--- a/WebKit/WebView.subproj/IFWebView.mm
+++ b/WebKit/WebView.subproj/IFWebView.mm
@@ -36,6 +36,7 @@
 - (void)dealloc 
 {
     [_viewPrivate release];
+    [super dealloc];
 }
 
  
diff --git a/WebKit/WebView.subproj/IFWebViewPrivate.mm b/WebKit/WebView.subproj/IFWebViewPrivate.mm
index 47ae13a..038766f 100644
--- a/WebKit/WebView.subproj/IFWebViewPrivate.mm
+++ b/WebKit/WebView.subproj/IFWebViewPrivate.mm
@@ -33,6 +33,8 @@
 
     if (widget)
         delete widget;
+
+    [super dealloc];
 }
 
 
diff --git a/WebKit/WebView.subproj/WebDataSource.m b/WebKit/WebView.subproj/WebDataSource.m
index e0a51a8..e3a7c02 100644
--- a/WebKit/WebView.subproj/WebDataSource.m
+++ b/WebKit/WebView.subproj/WebDataSource.m
@@ -52,6 +52,7 @@
 - (void)dealloc
 {
     [_dataSourcePrivate release];
+    [super dealloc];
 }
 
 #ifdef TENTATIVE_API
diff --git a/WebKit/WebView.subproj/WebDataSourcePrivate.m b/WebKit/WebView.subproj/WebDataSourcePrivate.m
index 71e6ac5..1ec5d7a 100644
--- a/WebKit/WebView.subproj/WebDataSourcePrivate.m
+++ b/WebKit/WebView.subproj/WebDataSourcePrivate.m
@@ -35,6 +35,8 @@
     [inputURL release];
     
     delete part;
+
+    [super dealloc];
 }
 
 @end
diff --git a/WebKit/WebView.subproj/WebFramePrivate.m b/WebKit/WebView.subproj/WebFramePrivate.m
index 5012fd4..c197c37 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.m
+++ b/WebKit/WebView.subproj/WebFramePrivate.m
@@ -13,6 +13,7 @@
     [name autorelease];
     [view autorelease];
     [dataSource autorelease];
+    [super dealloc];
 }
 
 - (NSString *)name { return name; }
diff --git a/WebKit/WebView.subproj/WebFrameView.m b/WebKit/WebView.subproj/WebFrameView.m
index b5269c6..d11535d 100644
--- a/WebKit/WebView.subproj/WebFrameView.m
+++ b/WebKit/WebView.subproj/WebFrameView.m
@@ -36,6 +36,7 @@
 - (void)dealloc 
 {
     [_viewPrivate release];
+    [super dealloc];
 }
 
  
diff --git a/WebKit/WebView.subproj/WebFrameViewPrivate.m b/WebKit/WebView.subproj/WebFrameViewPrivate.m
index 47ae13a..038766f 100644
--- a/WebKit/WebView.subproj/WebFrameViewPrivate.m
+++ b/WebKit/WebView.subproj/WebFrameViewPrivate.m
@@ -33,6 +33,8 @@
 
     if (widget)
         delete widget;
+
+    [super dealloc];
 }
 
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list