X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FDimension.cpp;h=5ca5f5f7b4d2a50798ccbbd93f19db597d9eb626;hb=1929caf4b743dc79a4d2b2adbaf9a0cc537f955f;hp=311c653f07c627f077fc191de22db8035dced81a;hpb=f630be890494c849981e4fb52ea4740506e92bed;p=lyx.git diff --git a/src/Dimension.cpp b/src/Dimension.cpp index 311c653f07..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,8 +12,9 @@ #include "Dimension.h" -namespace lyx { +#include "support/lassert.h" +namespace lyx { void Dimension::operator+=(Dimension const & dim) { @@ -24,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