[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 07:02:57 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit b7bce452c06810fd4f556e4d57554303444d1efe
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Nov 18 20:14:40 2002 +0000

    	Fix render_body's repaint method.
    
            * khtml/rendering/render_body.cpp:
            (RenderBody::repaint):
            * khtml/rendering/render_body.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2733 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 6256e35..a2802d8 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-11-18  David Hyatt  <hyatt at apple.com>
+
+	Fix render_body's repaint method.
+	
+        * khtml/rendering/render_body.cpp:
+        (RenderBody::repaint):
+        * khtml/rendering/render_body.h:
+
 2002-11-18  Maciej Stachowiak  <mjs at apple.com>
 
 	- fixed 3103711 - Alexander does not complete JavaScript iBench
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 6256e35..a2802d8 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,11 @@
+2002-11-18  David Hyatt  <hyatt at apple.com>
+
+	Fix render_body's repaint method.
+	
+        * khtml/rendering/render_body.cpp:
+        (RenderBody::repaint):
+        * khtml/rendering/render_body.h:
+
 2002-11-18  Maciej Stachowiak  <mjs at apple.com>
 
 	- fixed 3103711 - Alexander does not complete JavaScript iBench
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 6256e35..a2802d8 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,11 @@
+2002-11-18  David Hyatt  <hyatt at apple.com>
+
+	Fix render_body's repaint method.
+	
+        * khtml/rendering/render_body.cpp:
+        (RenderBody::repaint):
+        * khtml/rendering/render_body.h:
+
 2002-11-18  Maciej Stachowiak  <mjs at apple.com>
 
 	- fixed 3103711 - Alexander does not complete JavaScript iBench
diff --git a/WebCore/khtml/rendering/render_body.cpp b/WebCore/khtml/rendering/render_body.cpp
index be9354e..d5ea50a 100644
--- a/WebCore/khtml/rendering/render_body.cpp
+++ b/WebCore/khtml/rendering/render_body.cpp
@@ -78,11 +78,11 @@ void RenderBody::printBoxDecorations(QPainter *p,int, int _y,
         printBorder(p, _tx, _ty, w, h, style());
 }
 
-void RenderBody::repaint()
+void RenderBody::repaint(bool immediate)
 {
     RenderObject *cb = containingBlock();
     if(cb != this)
-	cb->repaint();
+        cb->repaint(immediate);
 }
 
 void RenderBody::layout()
diff --git a/WebCore/khtml/rendering/render_body.h b/WebCore/khtml/rendering/render_body.h
index 4231fa4..84dd001 100644
--- a/WebCore/khtml/rendering/render_body.h
+++ b/WebCore/khtml/rendering/render_body.h
@@ -40,7 +40,7 @@ public:
     virtual bool isBody() const { return true; }
 
     virtual const char *renderName() const { return "RenderBody"; }
-    virtual void repaint();
+    virtual void repaint(bool immediate=false);
 
 
     virtual void layout();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list