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

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:13:20 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit c192d2d23742ef6f7dd04a67c2f927dd4dff3bef
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Dec 11 02:22:00 2002 +0000

            Reviewed by Don.
    
    	- really fixed 3123727 - SJ: Viewmaster arm sometimes doesn't animate on
    	http://www.pixar.com/howwedoit/
    
            * kwq/KWQKHTMLPart.mm:
            (KWQKHTMLPart::KWQKHTMLPart): Call Cache::init before
    	KHTMLPart::init so we have a loader to connect the signals to.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2992 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 4777f17..66ff947 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,16 @@
 2002-12-10  Maciej Stachowiak  <mjs at apple.com>
 
+        Reviewed by Don.
+
+	- really fixed 3123727 - SJ: Viewmaster arm sometimes doesn't animate on
+	http://www.pixar.com/howwedoit/
+
+        * kwq/KWQKHTMLPart.mm:
+        (KWQKHTMLPart::KWQKHTMLPart): Call Cache::init before
+	KHTMLPart::init so we have a loader to connect the signals to.
+
+2002-12-10  Maciej Stachowiak  <mjs at apple.com>
+
         Reviewed by Darin.
 
 	- fixed 3123727 - SJ: Viewmaster arm sometimes doesn't animate on
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 4777f17..66ff947 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,16 @@
 2002-12-10  Maciej Stachowiak  <mjs at apple.com>
 
+        Reviewed by Don.
+
+	- really fixed 3123727 - SJ: Viewmaster arm sometimes doesn't animate on
+	http://www.pixar.com/howwedoit/
+
+        * kwq/KWQKHTMLPart.mm:
+        (KWQKHTMLPart::KWQKHTMLPart): Call Cache::init before
+	KHTMLPart::init so we have a loader to connect the signals to.
+
+2002-12-10  Maciej Stachowiak  <mjs at apple.com>
+
         Reviewed by Darin.
 
 	- fixed 3123727 - SJ: Viewmaster arm sometimes doesn't animate on
diff --git a/WebCore/kwq/KWQKHTMLPart.mm b/WebCore/kwq/KWQKHTMLPart.mm
index c7f6e3d..8c53db7 100644
--- a/WebCore/kwq/KWQKHTMLPart.mm
+++ b/WebCore/kwq/KWQKHTMLPart.mm
@@ -120,10 +120,12 @@ KWQKHTMLPart::KWQKHTMLPart()
     , _ownsView(false)
     , _mouseDownView(nil)
 {
+    // Must init the cache before connecting to any signals
+    Cache::init();
+
     // The widget is made outside this class in our case.
     KHTMLPart::init( 0, DefaultGUI );
 
-    Cache::init();
     mutableInstances().prepend(this);
     d->m_redirectionTimer.setMonitor(redirectionTimerMonitor, this);
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list