[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:38:38 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f4e1d4e1568c3804ddff177b8d2dffaea197280c
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 13 00:19:13 2002 +0000

    	Make fixed positioned elements work when you scroll.  We were
    	just missing the implementation of a QScrollView method.
    
            * kwq/KWQScrollView.mm:
            (QScrollView::setStaticBackground):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2052 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index f727660..59d5e8b 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-09-12  David Hyatt  <hyatt at apple.com>
 
+	Make fixed positioned elements work when you scroll.  We were
+	just missing the implementation of a QScrollView method.
+	
+        * kwq/KWQScrollView.mm:
+        (QScrollView::setStaticBackground):
+
+2002-09-12  David Hyatt  <hyatt at apple.com>
+
 	Fix a bug in KHTML that leads it to claim cached @imported stylesheets
 	are not loaded (when in fact they are).
 
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index f727660..59d5e8b 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,13 @@
 2002-09-12  David Hyatt  <hyatt at apple.com>
 
+	Make fixed positioned elements work when you scroll.  We were
+	just missing the implementation of a QScrollView method.
+	
+        * kwq/KWQScrollView.mm:
+        (QScrollView::setStaticBackground):
+
+2002-09-12  David Hyatt  <hyatt at apple.com>
+
 	Fix a bug in KHTML that leads it to claim cached @imported stylesheets
 	are not loaded (when in fact they are).
 
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index f727660..59d5e8b 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,13 @@
 2002-09-12  David Hyatt  <hyatt at apple.com>
 
+	Make fixed positioned elements work when you scroll.  We were
+	just missing the implementation of a QScrollView method.
+	
+        * kwq/KWQScrollView.mm:
+        (QScrollView::setStaticBackground):
+
+2002-09-12  David Hyatt  <hyatt at apple.com>
+
 	Fix a bug in KHTML that leads it to claim cached @imported stylesheets
 	are not loaded (when in fact they are).
 
diff --git a/WebCore/kwq/KWQScrollView.mm b/WebCore/kwq/KWQScrollView.mm
index 21ad3ed..396b95f 100644
--- a/WebCore/kwq/KWQScrollView.mm
+++ b/WebCore/kwq/KWQScrollView.mm
@@ -294,9 +294,11 @@ void QScrollView::viewportToContents(int vx, int vy, int& x, int& y)
     y = (int)np.y;
 }
 
-void QScrollView::setStaticBackground(bool)
+void QScrollView::setStaticBackground(bool b)
 {
-    LOG(NotYetImplemented, "not yet implemented");
+    NSScrollView *view = (NSScrollView *)getView();
+    if ([view _KWQ_isScrollView])
+        [[view contentView] setCopiesOnScroll: !b];
 }
 
 void QScrollView::resizeEvent(QResizeEvent *)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list