[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:25:42 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 951cd386877c8df208d75c3890e3257d4db4b30b
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Jul 21 02:22:38 2002 +0000

    WebCore:
    
            * khtml/css/css_ruleimpl.cpp: (CSSImportRuleImpl::~CSSImportRuleImpl):
    	Fix a potential leak by doing setParent(0) here just as is done in
    	CSSMediaRuleImpl.
    
            * kwq/WebCoreBridge.h: Fix a misspelling of visible.
    
    WebKit:
    
            * WebCoreSupport.subproj/WebBridge.m:
            (-[WebBridge areToolbarsVisible]):
            (-[WebBridge isStatusBarVisible]):
    	Fix misspelling of visible.
    
    WebBrowser:
    
    	- fixed 2999637 -- CFStringRef leak in -[IFWebDataSource(IFPrivate) _setTitle:]
    
            * BrowserDocument.m: (-[BrowserDocument pageName]): Remove inexplicable "retain" call.
    
    	- fixed another storage leak
    
            * LocationTextField.m: (-[LocationTextField setIcon:]): Release the icon when done.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1607 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 31c1a16..e8e595e 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-07-20  Darin Adler  <darin at apple.com>
+
+        * khtml/css/css_ruleimpl.cpp: (CSSImportRuleImpl::~CSSImportRuleImpl):
+	Fix a potential leak by doing setParent(0) here just as is done in
+	CSSMediaRuleImpl.
+
+        * kwq/WebCoreBridge.h: Fix a misspelling of visible.
+
 2002-07-20  Maciej Stachowiak  <mjs at apple.com>
 
 	Changed the code to handle "icon" and "SHORTCUT ICON" links
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 31c1a16..e8e595e 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,11 @@
+2002-07-20  Darin Adler  <darin at apple.com>
+
+        * khtml/css/css_ruleimpl.cpp: (CSSImportRuleImpl::~CSSImportRuleImpl):
+	Fix a potential leak by doing setParent(0) here just as is done in
+	CSSMediaRuleImpl.
+
+        * kwq/WebCoreBridge.h: Fix a misspelling of visible.
+
 2002-07-20  Maciej Stachowiak  <mjs at apple.com>
 
 	Changed the code to handle "icon" and "SHORTCUT ICON" links
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 31c1a16..e8e595e 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,11 @@
+2002-07-20  Darin Adler  <darin at apple.com>
+
+        * khtml/css/css_ruleimpl.cpp: (CSSImportRuleImpl::~CSSImportRuleImpl):
+	Fix a potential leak by doing setParent(0) here just as is done in
+	CSSMediaRuleImpl.
+
+        * kwq/WebCoreBridge.h: Fix a misspelling of visible.
+
 2002-07-20  Maciej Stachowiak  <mjs at apple.com>
 
 	Changed the code to handle "icon" and "SHORTCUT ICON" links
diff --git a/WebCore/khtml/css/css_ruleimpl.cpp b/WebCore/khtml/css/css_ruleimpl.cpp
index ccba597..99ba9c1 100644
--- a/WebCore/khtml/css/css_ruleimpl.cpp
+++ b/WebCore/khtml/css/css_ruleimpl.cpp
@@ -128,7 +128,10 @@ CSSImportRuleImpl::CSSImportRuleImpl( StyleBaseImpl *parent,
 
 CSSImportRuleImpl::~CSSImportRuleImpl()
 {
-    if(m_lstMedia) m_lstMedia->deref();
+    if( m_lstMedia ) {
+	m_lstMedia->setParent( 0 );
+        m_lstMedia->deref();
+    }
     if(m_styleSheet) m_styleSheet->deref();
     if(m_cachedSheet) m_cachedSheet->deref(this);
 }
diff --git a/WebCore/kwq/WebCoreBridge.h b/WebCore/kwq/WebCoreBridge.h
index 59bc4a6..150479f 100644
--- a/WebCore/kwq/WebCoreBridge.h
+++ b/WebCore/kwq/WebCoreBridge.h
@@ -132,9 +132,9 @@ typedef khtml::RenderPart KHTMLRenderPart;
     allowsScrolling:(BOOL)allowsScrolling marginWidth:(int)width marginHeight:(int)height;
 
 - (WebCoreBridge *)openNewWindowWithURL:(NSURL *)URL;
-- (BOOL)areToolbarsVisisble;
+- (BOOL)areToolbarsVisible;
 - (void)setToolbarsVisible:(BOOL)visible;
-- (BOOL)isStatusBarVisisble;
+- (BOOL)isStatusBarVisible;
 - (void)setStatusBarVisible:(BOOL)visible;
 - (BOOL)areScrollbarsVisible;
 - (void)setScrollbarsVisible:(BOOL)visible;
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index eb660f7..836564c 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,10 @@
+2002-07-20  Darin Adler  <darin at apple.com>
+
+        * WebCoreSupport.subproj/WebBridge.m:
+        (-[WebBridge areToolbarsVisible]):
+        (-[WebBridge isStatusBarVisible]):
+	Fix misspelling of visible.
+
 2002-07-20  Maciej Stachowiak  <mjs at apple.com>
 
 	Changed the code to handle "icon" and "SHORTCUT ICON" links
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index eb660f7..836564c 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-07-20  Darin Adler  <darin at apple.com>
+
+        * WebCoreSupport.subproj/WebBridge.m:
+        (-[WebBridge areToolbarsVisible]):
+        (-[WebBridge isStatusBarVisible]):
+	Fix misspelling of visible.
+
 2002-07-20  Maciej Stachowiak  <mjs at apple.com>
 
 	Changed the code to handle "icon" and "SHORTCUT ICON" links
diff --git a/WebKit/WebCoreSupport.subproj/WebBridge.m b/WebKit/WebCoreSupport.subproj/WebBridge.m
index 67a5225..7a3fee7 100644
--- a/WebKit/WebCoreSupport.subproj/WebBridge.m
+++ b/WebKit/WebCoreSupport.subproj/WebBridge.m
@@ -107,7 +107,7 @@
     return nil;
 }
 
-- (BOOL)areToolbarsVisisble
+- (BOOL)areToolbarsVisible
 {
     return [[[dataSource controller] windowContext] areToolbarsVisible];
 }
@@ -127,7 +127,7 @@
     return [[[dataSource webFrame] webView] setAllowsScrolling:visible];
 }
 
-- (BOOL)isStatusBarVisisble
+- (BOOL)isStatusBarVisible
 {
     return [[[dataSource controller] windowContext] isStatusBarVisible];
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list