[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

bfulgham at webkit.org bfulgham at webkit.org
Thu Apr 8 00:29:19 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 88dfdab798f8b8288d3890bb23831943511d299c
Author: bfulgham at webkit.org <bfulgham at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Dec 9 20:26:27 2009 +0000

    Revert incorrect commit-box update r51911.
    It mistakenly set the selectAll implementation in the
    deslectAll method.
    
    * WebFrame.cpp:
    (WebFrame::deselectAll):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51913 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/win/ChangeLog b/WebKit/win/ChangeLog
index 4d0fdf3..cec9cd9 100644
--- a/WebKit/win/ChangeLog
+++ b/WebKit/win/ChangeLog
@@ -1,5 +1,14 @@
 2009-12-09  Brent Fulgham  <bfulgham at webkit.org>
 
+        Revert incorrect commit-box update r51911.
+        It mistakenly set the selectAll implementation in the
+        deslectAll method. 
+
+        * WebFrame.cpp:
+        (WebFrame::deselectAll):
+
+2009-12-09  Brent Fulgham  <bfulgham at webkit.org>
+
         Reviewed by Darin Adler.
 
         Provide an implementation for 'selectAll'
diff --git a/WebKit/win/WebFrame.cpp b/WebKit/win/WebFrame.cpp
index 0d16b21..9063fde 100644
--- a/WebKit/win/WebFrame.cpp
+++ b/WebKit/win/WebFrame.cpp
@@ -998,14 +998,7 @@ HRESULT STDMETHODCALLTYPE WebFrame::selectAll()
 
 HRESULT STDMETHODCALLTYPE WebFrame::deselectAll()
 {
-    Frame* coreFrame = core(this);
-    if (!coreFrame)
-        return E_FAIL;
-
-    if (!coreFrame->editor()->command("SelectAll").execute())
-        return E_FAIL;
-
-    return S_OK;
+    return E_NOTIMPL;
 }
 
 // WebFrame ---------------------------------------------------------------

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list