[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 07:54:16 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit ca610cbf9640a9acaf73cc40833583f32c275ddc
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 27 05:47:43 2003 +0000

            Reviewed by Maciej.
    
            - fixed 3031562 -- most forms don't work in certain configurations because of a bug in KWQVariant
    
            * kwq/KWQVariant.mm: (QVariant::QVariant): Set the b element of the union, not the d element,
            in the constructor for bool.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4899 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 6b150cc..69b713d 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,12 @@
+2003-08-26  Darin Adler  <darin at apple.com>
+
+        Reviewed by Maciej.
+
+        - fixed 3031562 -- most forms don't work in certain configurations because of a bug in KWQVariant
+
+        * kwq/KWQVariant.mm: (QVariant::QVariant): Set the b element of the union, not the d element,
+        in the constructor for bool.
+
 2003-08-26  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3395950, better support for self-collapsing blocks.  Make them obey
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 6b150cc..69b713d 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2003-08-26  Darin Adler  <darin at apple.com>
+
+        Reviewed by Maciej.
+
+        - fixed 3031562 -- most forms don't work in certain configurations because of a bug in KWQVariant
+
+        * kwq/KWQVariant.mm: (QVariant::QVariant): Set the b element of the union, not the d element,
+        in the constructor for bool.
+
 2003-08-26  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3395950, better support for self-collapsing blocks.  Make them obey
diff --git a/WebCore/kwq/KWQVariant.mm b/WebCore/kwq/KWQVariant.mm
index 158483d..d4b1d86 100644
--- a/WebCore/kwq/KWQVariant.mm
+++ b/WebCore/kwq/KWQVariant.mm
@@ -62,7 +62,7 @@ QVariant::QVariant() : d(new QVariantPrivate)
 
 QVariant::QVariant(bool val, int) : d(new QVariantPrivate(Bool))
 {
-    d->value.d = val;
+    d->value.b = val;
 }
 
 QVariant::QVariant(int val) : d(new QVariantPrivate(Int))

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list