X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FDimension.cpp;h=5ca5f5f7b4d2a50798ccbbd93f19db597d9eb626;hb=28f6c312a95ba6a2f632c7540b8b69f0f2c0ab02;hp=b1cd41ed9a999d60dad46e406b3a2ffc75cc420c;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/Dimension.cpp b/src/Dimension.cpp index b1cd41ed9a..5ca5f5f7b4 100644 --- a/src/Dimension.cpp +++ b/src/Dimension.cpp @@ -12,6 +12,8 @@ #include "Dimension.h" +#include "support/lassert.h" + namespace lyx { void Dimension::operator+=(Dimension const & dim) @@ -23,4 +25,13 @@ void Dimension::operator+=(Dimension const & dim) wid += dim.wid; } + +Point::Point(int x, int y) : x_(x), y_(y) +{ + LASSERT(x > -1000000, x_ = -1000000); + LASSERT(x < 1000000, x_ = 1000000); + LASSERT(y > -1000000, y_ = -1000000); + LASSERT(y < 1000000, y_ = 1000000); +} + } // namespace lyx