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

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:46:00 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit bf9c3292ce35060311dd3a3f085998d2e416689a
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jul 2 18:53:09 2003 +0000

            Reviewed by David
    
    	Fix some more build problems with warnings being issued
    	when casting and calling methods.
    
            * kwq/KWQScrollView.mm:
            (QScrollView::addChild):
            (QScrollView::resizeContents):
            (QScrollView::repaintContents):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4579 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 47b6b50..7d69ab5 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,15 @@
+2003-07-02  Ken Kocienda  <kocienda at apple.com>
+
+        Reviewed by David
+
+	Fix some more build problems with warnings being issued
+	when casting and calling methods.
+
+        * kwq/KWQScrollView.mm:
+        (QScrollView::addChild):
+        (QScrollView::resizeContents):
+        (QScrollView::repaintContents):
+
 2003-07-01  Ken Kocienda  <kocienda at apple.com>
 
         Reviewed by Darin
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 47b6b50..7d69ab5 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,15 @@
+2003-07-02  Ken Kocienda  <kocienda at apple.com>
+
+        Reviewed by David
+
+	Fix some more build problems with warnings being issued
+	when casting and calling methods.
+
+        * kwq/KWQScrollView.mm:
+        (QScrollView::addChild):
+        (QScrollView::resizeContents):
+        (QScrollView::repaintContents):
+
 2003-07-01  Ken Kocienda  <kocienda at apple.com>
 
         Reviewed by Darin
diff --git a/WebCore/kwq/KWQScrollView.mm b/WebCore/kwq/KWQScrollView.mm
index ef8c60f..c2fff08 100644
--- a/WebCore/kwq/KWQScrollView.mm
+++ b/WebCore/kwq/KWQScrollView.mm
@@ -192,7 +192,7 @@ void QScrollView::addChild(QWidget* child, int x, int y)
     [subview removeFromSuperview];
     
     LOG(Frames, "Adding %p %@ at (%d,%d) w %d h %d\n", subview,
-        [[subview class] className], x, y, (int)[subview frame].size.width, (int)[subview frame].size.height);
+        [(id)[subview class] className], x, y, (int)[subview frame].size.width, (int)[subview frame].size.height);
 
     [thisView addSubview:subview];
 }
@@ -204,12 +204,12 @@ void QScrollView::removeChild(QWidget* child)
 
 void QScrollView::resizeContents(int w, int h)
 {
-    LOG(Frames, "%p %@ at w %d h %d\n", getView(), [[getView() class] className], w, h);
+    LOG(Frames, "%p %@ at w %d h %d\n", getView(), [(id)[getView() class] className], w, h);
     NSView *view = getView();
     if ([view _KWQ_isScrollView]){
         view = getDocumentView();
         
-        LOG(Frames, "%p %@ at w %d h %d\n", view, [[view class] className], w, h);
+        LOG(Frames, "%p %@ at w %d h %d\n", view, [(id)[view class] className], w, h);
         if (w < 0)
             w = 0;
         if (h < 0)
@@ -240,7 +240,7 @@ void QScrollView::updateContents(const QRect &rect, bool now)
 
 void QScrollView::repaintContents(int x, int y, int w, int h, bool erase)
 {
-    LOG(Frames, "%p %@ at (%d,%d) w %d h %d\n", getView(), [[getView() class] className], x, y, w, h);
+    LOG(Frames, "%p %@ at (%d,%d) w %d h %d\n", getView(), [(id)[getView() class] className], x, y, w, h);
 }
 
 QPoint QScrollView::contentsToViewport(const QPoint &p)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list