Commit d4a0f6d1 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov

git-svn-id:...

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@54007 954022d7-b5bf-4e40-9824-e11837661b57
parent 73327a95
...@@ -79,7 +79,7 @@ template <typename T> ...@@ -79,7 +79,7 @@ template <typename T>
class PointF_T class PointF_T
{ {
public: public:
PointF_T() : X(0.0f), Y(0.0f) { } PointF_T() : X(0), Y(0) { }
PointF_T(const PointF_T &point) : X(point.X), Y(point.Y) { } PointF_T(const PointF_T &point) : X(point.X), Y(point.Y) { }
PointF_T(const SizeF_T<T> &size) : X(size.Width), Y(size.Height) { } PointF_T(const SizeF_T<T> &size) : X(size.Width), Y(size.Height) { }
PointF_T(T x, T y) : X(x), Y(y) { } PointF_T(T x, T y) : X(x), Y(y) { }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment