[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 06:56:15 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit c578c0c96cda751753c72ae76b92ef35eb069bca
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 31 05:20:01 2002 +0000

    	- fixed 3049853 - Javascript: setInterval incorrectly acts as single shot
    
            * kwq/KWQObject.mm:
            (QObject::startTimer): Set a recurring timer instead of
    	single-shot, to match QObject semantics.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2517 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 0279847..53041cc 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-10-30  Maciej Stachowiak  <mjs at apple.com>
+
+	- fixed 3049853 - Javascript: setInterval incorrectly acts as single shot
+	
+        * kwq/KWQObject.mm:
+        (QObject::startTimer): Set a recurring timer instead of
+	single-shot, to match QObject semantics.
+
 2002-10-30  Richard Williamson  <rjw at apple.com>
 
         More work on bidi and contextual forms.
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 0279847..53041cc 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,11 @@
+2002-10-30  Maciej Stachowiak  <mjs at apple.com>
+
+	- fixed 3049853 - Javascript: setInterval incorrectly acts as single shot
+	
+        * kwq/KWQObject.mm:
+        (QObject::startTimer): Set a recurring timer instead of
+	single-shot, to match QObject semantics.
+
 2002-10-30  Richard Williamson  <rjw at apple.com>
 
         More work on bidi and contextual forms.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 0279847..53041cc 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,11 @@
+2002-10-30  Maciej Stachowiak  <mjs at apple.com>
+
+	- fixed 3049853 - Javascript: setInterval incorrectly acts as single shot
+	
+        * kwq/KWQObject.mm:
+        (QObject::startTimer): Set a recurring timer instead of
+	single-shot, to match QObject semantics.
+
 2002-10-30  Richard Williamson  <rjw at apple.com>
 
         More work on bidi and contextual forms.
diff --git a/WebCore/khtml/rendering/render_form.cpp b/WebCore/khtml/rendering/render_form.cpp
index 49528ed..b266807 100644
--- a/WebCore/khtml/rendering/render_form.cpp
+++ b/WebCore/khtml/rendering/render_form.cpp
@@ -797,6 +797,8 @@ void RenderSelect::updateFromElement()
         m_optionsChanged = true;
     }
 
+    /* XXX */ m_optionsChanged = true;
+
     // update contents listbox/combobox based on options in m_element
     if ( m_optionsChanged ) {
         if (element()->m_recalcListItems)
diff --git a/WebCore/kwq/KWQObject.mm b/WebCore/kwq/KWQObject.mm
index f590699..47a188d 100644
--- a/WebCore/kwq/KWQObject.mm
+++ b/WebCore/kwq/KWQObject.mm
@@ -153,7 +153,7 @@ int QObject::startTimer(int milliseconds)
           target:target
         selector:@selector(timerFired)
         userInfo:target
-         repeats:NO];
+         repeats:YES];
     [target release];
     [timers setObject:timer forKey:timerId];
     

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list