diff qt/d1/qt/core/QRectF.d @ 254:34a37904ff77

(none)
author maxter
date Sun, 30 Aug 2009 10:59:56 +0000
parents 37eed70de029
children
line wrap: on
line diff
--- a/qt/d1/qt/core/QRectF.d	Sun Aug 30 09:59:12 2009 +0000
+++ b/qt/d1/qt/core/QRectF.d	Sun Aug 30 10:59:56 2009 +0000
@@ -18,7 +18,7 @@
         rt.w = rt.h = 0.;
         return rt;
     }
-    
+
     public static QRectF opCall(qreal aleft, qreal atop, qreal awidth, qreal aheight)
     {
         QRectF rt;
@@ -76,28 +76,28 @@
 
     qreal left() // const
     { return xp; }
-    
+
     qreal top() // const
     { return yp; }
-    
+
     qreal right() // const
     { return xp + w; }
-    
+
     qreal bottom() // const
     { return yp + h; }
-    
+
     QPointF topLeft() // const
     { return QPointF(xp, yp); }
-    
+
     QPointF bottomRight() // const
     { return QPointF(xp+w, yp+h); }
-    
+
     QPointF topRight() // const
     { return QPointF(xp+w, yp); }
-    
+
     QPointF bottomLeft() // const
     { return QPointF(xp, yp+h); }
-    
+
     void setLeft(qreal pos) { qreal diff = pos - xp; xp += diff; w -= diff; }
 
     void setRight(qreal pos) { w = pos - xp; }
@@ -235,7 +235,7 @@
         w = s.width();
         h = s.height();
     }
-    
+
     bool contains(qreal ax, qreal ay) // conts
     {
         return contains(QPointF(ax, ay));
@@ -295,11 +295,11 @@
     }
 
     public final void writeTo(QDataStream arg__1) {
-        qtd_QRectF_writeTo_QDataStream(this, arg__1 is null ? null : arg__1.nativeId);
+        qtd_QRectF_writeTo_QDataStream(this, arg__1 is null ? null : arg__1.__nativeId);
     }
 
     public final void readFrom(QDataStream arg__1) {
-        qtd_QRectF_readFrom_QDataStream(this, arg__1 is null ? null : arg__1.nativeId);
+        qtd_QRectF_readFrom_QDataStream(this, arg__1 is null ? null : arg__1.__nativeId);
     }
 
     public final QRectF opOr(in QRectF r) {