X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FDimension.cpp;h=5ca5f5f7b4d2a50798ccbbd93f19db597d9eb626;hb=c7d29be153debac82e3d2e8865fcc849f0a5f40d;hp=e80d83585ae7a9390f12d0a2780f31a3f13a8360;hpb=052d7ab6814e57afad2ba0d143aa4b26648add4a;p=lyx.git diff --git a/src/Dimension.cpp b/src/Dimension.cpp index e80d83585a..5ca5f5f7b4 100644 --- a/src/Dimension.cpp +++ b/src/Dimension.cpp @@ -3,7 +3,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -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