[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:22:53 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 153403f832d389829a63963f9f230ebab215c7ba
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jul 21 06:29:15 2010 +0000

    2010-07-20  Rafael Antognolli  <antognolli at profusion.mobi>
    
            Reviewed by Kent Tamura.
    
            [EFL] Use log functions instead of fprintf
            https://bugs.webkit.org/show_bug.cgi?id=42576
    
            Use LOG and LOG_ERROR instead of fprintf.
    
            No new tests, no new functionality.
    
            * platform/efl/WidgetEfl.cpp:
            (WebCore::Widget::applyFallbackCursor):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63804 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index f1304c7..dac7cc6 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,17 @@
+2010-07-20  Rafael Antognolli  <antognolli at profusion.mobi>
+
+        Reviewed by Kent Tamura.
+
+        [EFL] Use log functions instead of fprintf
+        https://bugs.webkit.org/show_bug.cgi?id=42576
+
+        Use LOG and LOG_ERROR instead of fprintf.
+
+        No new tests, no new functionality.
+
+        * platform/efl/WidgetEfl.cpp:
+        (WebCore::Widget::applyFallbackCursor):
+
 2010-07-20  Ilya Tikhonovsky  <loislo at chromium.org>
 
         Reviewed by Yury Semikhatsky.
diff --git a/WebCore/platform/efl/WidgetEfl.cpp b/WebCore/platform/efl/WidgetEfl.cpp
index d6a4d08..6dbf2c2 100644
--- a/WebCore/platform/efl/WidgetEfl.cpp
+++ b/WebCore/platform/efl/WidgetEfl.cpp
@@ -211,8 +211,8 @@ void Widget::applyFallbackCursor()
         int shape = cursorStringMap.cursor(m_data->m_cursorGroup.utf8().data());
 
         if (shape < ECORE_X_CURSOR_X || shape > ECORE_X_CURSOR_XTERM) {
-            fprintf(stderr, "ERROR: cannot map an equivalent X cursor for"
-                    " cursor group %s", m_data->m_cursorGroup.utf8().data());
+            LOG_ERROR("cannot map an equivalent X cursor for"
+                      " c ursor group %s", m_data->m_cursorGroup.utf8().data());
             shape = ECORE_X_CURSOR_LEFT_PTR;
         }
 
@@ -221,10 +221,9 @@ void Widget::applyFallbackCursor()
         ecore_x_window_cursor_set(win, cur);
         return;
     }
-#else
-    fprintf(stderr, "ERROR: Ooops, no fallback to set cursor %s!\n",
-            m_data->m_cursorGroup.utf8().data());
 #endif
+    LOG("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