lyx_mirror/src/Dimension.cpp
Jean-Marc Lasgouttes c7c16fe9fa Remove trailing underscore on members x and y of Point class.
These members are not private.
2024-06-20 16:37:05 +02:00

38 lines
696 B
C++

/**
* \file Dimension.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "Dimension.h"
#include "support/lassert.h"
namespace lyx {
void Dimension::operator+=(Dimension const & dim)
{
if (asc < dim.asc)
asc = dim.asc;
if (des < dim.des)
des = dim.des;
wid += dim.wid;
}
Point::Point(int px, int py) : x(px), y(py)
{
LASSERT(px > -1000000, x = -1000000);
LASSERT(px < 1000000, x = 1000000);
LASSERT(py > -1000000, y = -1000000);
LASSERT(py < 1000000, y = 1000000);
}
} // namespace lyx