]> git.lyx.org Git - lyx.git/blobdiff - src/Dimension.cpp
Account for old versions of Pygments
[lyx.git] / src / Dimension.cpp
index e80d83585ae7a9390f12d0a2780f31a3f13a8360..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,6 +12,8 @@
 
 #include "Dimension.h"
 
+#include "support/lassert.h"
+
 namespace lyx {
 
 void Dimension::operator+=(Dimension const & dim)
@@ -23,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