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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 11:25:42 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit d27e9606e689662182a4f5405ef7f5ece9e75f7b
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jul 23 02:02:57 2010 +0000

    2010-07-22  Lucas De Marchi  <lucas.demarchi at profusion.mobi>
    
            Reviewed by Antonio Gomes.
    
            [EFL] Log function is incorrectly used.
            r63804 used LOG function, but it should receive one more parameter.
            Used LOG_ERROR instead, since this is an error message.
            https://bugs.webkit.org/show_bug.cgi?id=42842
    
            * platform/efl/WidgetEfl.cpp:
            (WebCore::Widget::applyFallbackCursor): use LOG_ERROR in place of LOG
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63939 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 4af3608..6aa345f 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-07-22  Lucas De Marchi  <lucas.demarchi at profusion.mobi>
+
+        Reviewed by Antonio Gomes.
+
+        [EFL] Log function is incorrectly used.
+        r63804 used LOG function, but it should receive one more parameter.
+        Used LOG_ERROR instead, since this is an error message.
+        https://bugs.webkit.org/show_bug.cgi?id=42842
+
+        * platform/efl/WidgetEfl.cpp:
+        (WebCore::Widget::applyFallbackCursor): use LOG_ERROR in place of LOG
+
 2010-07-22  Kent Tamura  <tkent at chromium.org>
 
         Reviewed by Ojan Vafai.
diff --git a/WebCore/platform/efl/WidgetEfl.cpp b/WebCore/platform/efl/WidgetEfl.cpp
index 6dbf2c2..d82e99e 100644
--- a/WebCore/platform/efl/WidgetEfl.cpp
+++ b/WebCore/platform/efl/WidgetEfl.cpp
@@ -222,8 +222,8 @@ void Widget::applyFallbackCursor()
         return;
     }
 #endif
-    LOG("Ooops, no fallback to set cursor %s!\n",
-        m_data->m_cursorGroup.utf8().data());
+    LOG_ERROR("Ooops, no fallback to set cursor %s!\n",
+              m_data->m_cursorGroup.utf8().data());
 }
 
 void Widget::applyCursor()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list