[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

abarth at webkit.org abarth at webkit.org
Thu Oct 29 20:38:41 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 46f6450bd8174f722e3488b76bd2001c4bae7db6
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Oct 4 00:41:43 2009 +0000

    2009-10-03  Adam Barth  <abarth at webkit.org>
    
            Unreview build fix.  I wish I had a try server...
    
            * Api/qwebpage.cpp:
            (QWebPagePrivate::updateAction):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49070 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/qt/Api/qwebpage.cpp b/WebKit/qt/Api/qwebpage.cpp
index 655fd0e..2ae7ff2 100644
--- a/WebKit/qt/Api/qwebpage.cpp
+++ b/WebKit/qt/Api/qwebpage.cpp
@@ -461,10 +461,10 @@ void QWebPagePrivate::updateAction(QWebPage::WebAction action)
 
     switch (action) {
         case QWebPage::Back:
-            enabled = loader->canGoBackOrForward(-1);
+            enabled = page->canGoBackOrForward(-1);
             break;
         case QWebPage::Forward:
-            enabled = loader->canGoBackOrForward(1);
+            enabled = page->canGoBackOrForward(1);
             break;
         case QWebPage::Stop:
             enabled = loader->isLoading();
diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index 7005916..29bbc4f 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -1,3 +1,10 @@
+2009-10-03  Adam Barth  <abarth at webkit.org>
+
+        Unreview build fix.  I wish I had a try server...
+
+        * Api/qwebpage.cpp:
+        (QWebPagePrivate::updateAction):
+
 2009-10-02  Norbert Leser  <norbert.leser at nokia.com>
 
         Reviewed by Simon Hausmann.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list