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

thakis at chromium.org thakis at chromium.org
Wed Dec 22 11:44:40 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit e8ba73a4614da71d3d391f91bb03e37414a9fa63
Author: thakis at chromium.org <thakis at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 5 16:30:31 2010 +0000

    2010-08-05  Nico Weber  <thakis at chromium.org>
    
            Reviewed by Jeremy Orlow.
    
            Remove useless const on return-by-value (fixes a clang warning)
            https://bugs.webkit.org/show_bug.cgi?id=43491
    
            * src/WebInputEventConversion.cpp:
            (WebKit::toPlatformKeyboardEventType):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64756 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 2feb081..0bc66eb 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,13 @@
+2010-08-05  Nico Weber  <thakis at chromium.org>
+
+        Reviewed by Jeremy Orlow.
+
+        Remove useless const on return-by-value (fixes a clang warning)
+        https://bugs.webkit.org/show_bug.cgi?id=43491
+
+        * src/WebInputEventConversion.cpp:
+        (WebKit::toPlatformKeyboardEventType):
+
 2010-08-05  Satish Sampath  <satish at chromium.org>
 
         Reviewed by Jeremy Orlow.
diff --git a/WebKit/chromium/src/WebInputEventConversion.cpp b/WebKit/chromium/src/WebInputEventConversion.cpp
index 1c6d59c..f47a4e8 100644
--- a/WebKit/chromium/src/WebInputEventConversion.cpp
+++ b/WebKit/chromium/src/WebInputEventConversion.cpp
@@ -104,7 +104,7 @@ PlatformWheelEventBuilder::PlatformWheelEventBuilder(Widget* widget, const WebMo
 
 // MakePlatformKeyboardEvent --------------------------------------------------
 
-static inline const PlatformKeyboardEvent::Type toPlatformKeyboardEventType(WebInputEvent::Type type)
+static inline PlatformKeyboardEvent::Type toPlatformKeyboardEventType(WebInputEvent::Type type)
 {
     switch (type) {
     case WebInputEvent::KeyUp:

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list