[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:17:38 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit ebaf98422eefece82f049fb7085c2e54e90dd18b
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jul 16 22:03:32 2010 +0000

    2010-07-16  Lucas De Marchi  <lucas.demarchi at profusion.mobi>
    
            Reviewed by Antonio Gomes.
    
            [EFL] Use function provided by EFL for system beep
            https://bugs.webkit.org/show_bug.cgi?id=42481
    
            EFL port does not support automated tests, yet.
    
            * platform/efl/SoundEfl.cpp:
            (WebCore::systemBeep):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63588 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 9a141ad..2d51ab4 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-07-16  Lucas De Marchi  <lucas.demarchi at profusion.mobi>
+
+        Reviewed by Antonio Gomes.
+
+        [EFL] Use function provided by EFL for system beep
+        https://bugs.webkit.org/show_bug.cgi?id=42481
+
+        EFL port does not support automated tests, yet.
+
+        * platform/efl/SoundEfl.cpp:
+        (WebCore::systemBeep):
+
 2010-07-16  Sarah Strong  <sarah.e.strong at gmail.com>
 
         Reviewed by Gustavo Noronha Silva.
diff --git a/WebCore/platform/efl/SoundEfl.cpp b/WebCore/platform/efl/SoundEfl.cpp
index c3b1eb3..091de7a 100644
--- a/WebCore/platform/efl/SoundEfl.cpp
+++ b/WebCore/platform/efl/SoundEfl.cpp
@@ -32,7 +32,6 @@
 
 #ifdef HAVE_ECORE_X
 #include <Ecore_X.h>
-#include <X11/Xlib.h>
 #endif
 
 namespace WebCore {
@@ -40,8 +39,7 @@ namespace WebCore {
 void systemBeep()
 {
 #ifdef HAVE_ECORE_X
-    Display* display = (Display*) ecore_x_display_get();
-    XBell(display, 0);
+    ecore_x_bell(0);
 #endif
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list