[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.18-1-697-g2f78b87

hausmann at webkit.org hausmann at webkit.org
Wed Jan 20 22:19:21 UTC 2010


The following commit has been merged in the debian/unstable branch:
commit cb8fae6792baa2f105b7f69ec548f3abac29bcd1
Author: hausmann at webkit.org <hausmann at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 11 16:15:30 2010 +0000

    [Qt] Add private API for QWebFrame scrolling, to maintain binary compatibility with Qt 4.6.
    
    Reviewed by Holger Freyther.
    
    This is just a temporary addition until we have introduced #ifdefs to allow
    safely removing the private API again.
    
    * Api/qwebframe.cpp:
    (qtwebkit_webframe_scrollRecursively):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53077 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/qt/Api/qwebframe.cpp b/WebKit/qt/Api/qwebframe.cpp
index 7f3c53e..5c07f0f 100644
--- a/WebKit/qt/Api/qwebframe.cpp
+++ b/WebKit/qt/Api/qwebframe.cpp
@@ -1098,6 +1098,11 @@ bool QWebFrame::scrollRecursively(int dx, int dy)
     return (scrolledHorizontal || scrolledVertical || scrolledOverflow);
 }
 
+bool QWEBKIT_EXPORT qtwebkit_webframe_scrollRecursively(QWebFrame* qFrame, int dx, int dy)
+{
+    return qFrame->scrollRecursively(dx, dy);
+}
+
 /*!
   \property QWebFrame::scrollPosition
   \since 4.5
diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index f4e021d..a5733da 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -1,3 +1,15 @@
+2010-01-11  Simon Hausmann  <simon.hausmann at nokia.com>
+
+        Reviewed by Holger Freyther.
+
+        [Qt] Add private API for QWebFrame scrolling, to maintain binary compatibility with Qt 4.6.
+
+        This is just a temporary addition until we have introduced #ifdefs to allow
+        safely removing the private API again.
+
+        * Api/qwebframe.cpp:
+        (qtwebkit_webframe_scrollRecursively):
+
 2010-01-10  Robert Hogan  <robert at roberthogan.net>
 
         Reviewed by Adam Barth.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list