mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
c7c16fe9fa
These members are not private.
38 lines
696 B
C++
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
|