diff options
author | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-04-15 21:56:08 (GMT) |
---|---|---|
committer | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-04-15 21:56:08 (GMT) |
commit | c51b0e8389f52f895a9d69e9e96c1fd768d78bf4 (patch) | |
tree | a77e655a6539326b9ea2087d64358a70237a9466 /src/gui/math3d/qvector2d.cpp | |
parent | ca83968f235c731f3bd1eb38e3c97d38d34565a0 (diff) | |
download | Qt-c51b0e8389f52f895a9d69e9e96c1fd768d78bf4.zip Qt-c51b0e8389f52f895a9d69e9e96c1fd768d78bf4.tar.gz Qt-c51b0e8389f52f895a9d69e9e96c1fd768d78bf4.tar.bz2 |
Remove the int constructors from the vector classes
The int constructors existed to make fixed-point conversions faster
in certain circumstances. With the removal of fixed-point support,
they are no longer required.
Reviewed-by: trustme
Diffstat (limited to 'src/gui/math3d/qvector2d.cpp')
-rw-r--r-- | src/gui/math3d/qvector2d.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gui/math3d/qvector2d.cpp b/src/gui/math3d/qvector2d.cpp index 31e5be6..54e1712 100644 --- a/src/gui/math3d/qvector2d.cpp +++ b/src/gui/math3d/qvector2d.cpp @@ -75,12 +75,6 @@ QT_BEGIN_NAMESPACE */ /*! - \fn QVector2D::QVector2D(int xpos, int ypos) - - Constructs a vector with coordinates (\a xpos, \a ypos). -*/ - -/*! \fn QVector2D::QVector2D(const QPoint& point) Constructs a vector with x and y coordinates from a 2D \a point. |