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


The following commit has been merged in the debian/unstable branch:
commit 5c0d1e032645d6fb4b82468e37e0d493858874d2
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Aug 23 00:11:57 2002 +0000

            * kwq/KWQButton.mm: (QButton::~QButton): Disconnect the view
    	from the widget by doing setTarget:nil.
            * kwq/KWQComboBox.mm: (QComboBox::~QComboBox): Ditto.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1905 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 7472d9b..b67bc9b 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,9 @@
+2002-08-22  Darin Adler  <darin at apple.com>
+
+        * kwq/KWQButton.mm: (QButton::~QButton): Disconnect the view
+	from the widget by doing setTarget:nil.
+        * kwq/KWQComboBox.mm: (QComboBox::~QComboBox): Ditto.
+
 2002-08-22  David Hyatt  <hyatt at apple.com>
 
 	Add vertical margins for checkboxes and radios.  A later rule
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 7472d9b..b67bc9b 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,9 @@
+2002-08-22  Darin Adler  <darin at apple.com>
+
+        * kwq/KWQButton.mm: (QButton::~QButton): Disconnect the view
+	from the widget by doing setTarget:nil.
+        * kwq/KWQComboBox.mm: (QComboBox::~QComboBox): Ditto.
+
 2002-08-22  David Hyatt  <hyatt at apple.com>
 
 	Add vertical margins for checkboxes and radios.  A later rule
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 7472d9b..b67bc9b 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,9 @@
+2002-08-22  Darin Adler  <darin at apple.com>
+
+        * kwq/KWQButton.mm: (QButton::~QButton): Disconnect the view
+	from the widget by doing setTarget:nil.
+        * kwq/KWQComboBox.mm: (QComboBox::~QComboBox): Ditto.
+
 2002-08-22  David Hyatt  <hyatt at apple.com>
 
 	Add vertical margins for checkboxes and radios.  A later rule
diff --git a/WebCore/kwq/KWQButton.mm b/WebCore/kwq/KWQButton.mm
index a942634..7049235 100644
--- a/WebCore/kwq/KWQButton.mm
+++ b/WebCore/kwq/KWQButton.mm
@@ -57,6 +57,8 @@ QButton::QButton()
 
 QButton::~QButton()
 {
+    NSButton *button = (NSButton *)getView();
+    [button setTarget:nil];
     [m_adapter release];
 }
 
diff --git a/WebCore/kwq/KWQComboBox.mm b/WebCore/kwq/KWQComboBox.mm
index 013c10a..5595c11 100644
--- a/WebCore/kwq/KWQComboBox.mm
+++ b/WebCore/kwq/KWQComboBox.mm
@@ -88,6 +88,8 @@ QComboBox::QComboBox()
 
 QComboBox::~QComboBox()
 {
+    NSPopUpButton *button = (NSPopUpButton *)getView();
+    [button setTarget:nil];
     [m_adapter release];
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list