]> git.lyx.org Git - lyx.git/blobdiff - src/Dimension.cpp
Re-fix #2005
[lyx.git] / src / Dimension.cpp
index 311c653f07c627f077fc191de22db8035dced81a..5ca5f5f7b4d2a50798ccbbd93f19db597d9eb626 100644 (file)
@@ -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