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

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:49:08 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 08c13b5a0bf448202c5a824393413b2e019a0762
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jul 28 20:39:24 2003 +0000

    	Fix build bustage on my buggy panther compiler.
    
            Reviewed by darin
    
            * kwq/KWQLineEdit.mm:
            (QLineEdit::~QLineEdit):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4720 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 9067258..eb3169d 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,14 @@
 2003-07-28  Dave Hyatt  <hyatt at apple.com>
 
+	Fix build bustage on my buggy panther compiler.
+	
+        Reviewed by darin
+
+        * kwq/KWQLineEdit.mm:
+        (QLineEdit::~QLineEdit):
+
+2003-07-28  Dave Hyatt  <hyatt at apple.com>
+
 	Fix for 3343250, XML didn't know how to make implicit tbodies when starting new elements,
 	nor did it know to skip implicit elements when popping its element stack.
 	
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 9067258..eb3169d 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,14 @@
 2003-07-28  Dave Hyatt  <hyatt at apple.com>
 
+	Fix build bustage on my buggy panther compiler.
+	
+        Reviewed by darin
+
+        * kwq/KWQLineEdit.mm:
+        (QLineEdit::~QLineEdit):
+
+2003-07-28  Dave Hyatt  <hyatt at apple.com>
+
 	Fix for 3343250, XML didn't know how to make implicit tbodies when starting new elements,
 	nor did it know to skip implicit elements when popping its element stack.
 	
diff --git a/WebCore/kwq/KWQLineEdit.mm b/WebCore/kwq/KWQLineEdit.mm
index 5ad58fb..f069755 100644
--- a/WebCore/kwq/KWQLineEdit.mm
+++ b/WebCore/kwq/KWQLineEdit.mm
@@ -45,7 +45,8 @@ QLineEdit::QLineEdit()
 
 QLineEdit::~QLineEdit()
 {
-    [(KWQTextField *)getView() invalidate];
+    KWQTextField* textField = (KWQTextField*)getView();
+    [textField invalidate];
 }
 
 void QLineEdit::setEchoMode(EchoMode mode)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list