X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FDimension.cpp;h=5ca5f5f7b4d2a50798ccbbd93f19db597d9eb626;hb=cf6b30ae76ebab5dfc1e2d70d5320abc060aa95f;hp=ea1d24426dbf96b4b738abf6929c8edefe94339a;hpb=923ab0734d7374c505f314fef73909c405771ff8;p=lyx.git diff --git a/src/Dimension.cpp b/src/Dimension.cpp index ea1d24426d..5ca5f5f7b4 100644 --- a/src/Dimension.cpp +++ b/src/Dimension.cpp @@ -28,10 +28,10 @@ void Dimension::operator+=(Dimension const & dim) 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); + LASSERT(x > -1000000, x_ = -1000000); + LASSERT(x < 1000000, x_ = 1000000); + LASSERT(y > -1000000, y_ = -1000000); + LASSERT(y < 1000000, y_ = 1000000); } } // namespace lyx