[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

ossy at webkit.org ossy at webkit.org
Wed Dec 22 11:40:19 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit a6afc49eebf16e9ff42ef0b9c942ba2c50c8da2a
Author: ossy at webkit.org <ossy at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 3 13:22:29 2010 +0000

    2010-08-03  Csaba Osztrogonác  <ossy at webkit.org>
    
            Reviewed by Adam Roben.
    
            Fix warning in WebCore/plugins/win/PluginMessageThrottlerWin.cpp
            https://bugs.webkit.org/show_bug.cgi?id=43413
    
            * plugins/win/PluginMessageThrottlerWin.cpp:
            (WebCore::PluginMessageThrottlerWin::PluginMessageThrottlerWin): Modify initialization order.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64548 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index da9e71e..c33ed0b 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-08-03  Csaba Osztrogonác  <ossy at webkit.org>
+
+        Reviewed by Adam Roben.
+
+        Fix warning in WebCore/plugins/win/PluginMessageThrottlerWin.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=43413
+
+        * plugins/win/PluginMessageThrottlerWin.cpp:
+        (WebCore::PluginMessageThrottlerWin::PluginMessageThrottlerWin): Modify initialization order.
+
 2010-08-03  Yury Semikhatsky  <yurys at chromium.org>
 
         Reviewed by Pavel Feldman.
diff --git a/WebCore/plugins/win/PluginMessageThrottlerWin.cpp b/WebCore/plugins/win/PluginMessageThrottlerWin.cpp
index dd1f05b..c5f3081 100644
--- a/WebCore/plugins/win/PluginMessageThrottlerWin.cpp
+++ b/WebCore/plugins/win/PluginMessageThrottlerWin.cpp
@@ -48,8 +48,8 @@ PluginMessageThrottlerWin::PluginMessageThrottlerWin(PluginView* pluginView)
     : m_pluginView(pluginView)
     , m_back(0)
     , m_front(0)
-    , m_lastMessageTime(0)
     , m_messageThrottleTimer(this, &PluginMessageThrottlerWin::messageThrottleTimerFired)
+    , m_lastMessageTime(0)
 {
     // Initialize the free list with our inline messages
     for (unsigned i = 0; i < NumInlineMessages - 1; i++)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list