[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 08:15:34 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit a3d5d008ef284e7a7aea4b7027eff2efedcb9fa5
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Dec 2 19:48:06 2003 +0000

            Reviewed by John
    
            * kwq/KWQRect.h:
            * kwq/KWQRect.mm:
            (QRect::bottomRight): Added helper.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5649 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index f8c5676..3639c9f 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,11 @@
+2003-12-02  Ken Kocienda  <kocienda at apple.com>
+
+        Reviewed by John
+
+        * kwq/KWQRect.h:
+        * kwq/KWQRect.mm:
+        (QRect::bottomRight): Added helper.
+
 2003-12-02  Maciej Stachowiak  <mjs at apple.com>
 
 	Merged the following patch from David Faure to fix:
diff --git a/WebCore/kwq/KWQRect.h b/WebCore/kwq/KWQRect.h
index 2dec95e..80f92b1 100644
--- a/WebCore/kwq/KWQRect.h
+++ b/WebCore/kwq/KWQRect.h
@@ -52,6 +52,7 @@ public:
     int height() const { return h; }
 
     QPoint topLeft() const;
+    QPoint bottomRight() const;
     QSize size() const;
     void setX(int x) { xp = x; }
     void setY(int y) { yp = y; }
diff --git a/WebCore/kwq/KWQRect.mm b/WebCore/kwq/KWQRect.mm
index f531bdd..5f2bec8 100644
--- a/WebCore/kwq/KWQRect.mm
+++ b/WebCore/kwq/KWQRect.mm
@@ -76,6 +76,11 @@ QPoint QRect::topLeft() const
     return QPoint(xp,yp);
 }
 
+QPoint QRect::bottomRight() const
+{
+    return QPoint(right(),bottom());
+}
+
 QSize QRect::size() const
 {
     return QSize(w,h);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list