]> git.lyx.org Git - lyx.git/blobdiff - src/CoordCache.cpp
Harmonize naming
[lyx.git] / src / CoordCache.cpp
index d1d41e3968f1a1002aabd5842bb938dbec1e058d..dedd1355b677e3af008c314059238855ed9569a4 100644 (file)
@@ -26,18 +26,19 @@ namespace lyx {
 Point::Point(int x, int y)
        : x_(x), y_(y)
 {
-       LASSERT(x > -1000000, /**/);
-       LASSERT(x <  1000000, /**/);
-       LASSERT(y > -1000000, /**/);
-       LASSERT(y <  1000000, /**/);
+       LASSERT(x > -1000000, x = -1000000);
+       LASSERT(x <  1000000, x =  1000000);
+       LASSERT(y > -1000000, y = -1000000);
+       LASSERT(y <  1000000, y =  1000000);
 }
 
+
 // just a helper to be able to set a breakpoint
 void lyxbreaker(void const * data, const char * hint, int size)
 {
        LYXERR0("break on pointer: " << data << " hint: " << hint
                << " size: " << size);
-        LASSERT(false, return);
+       LASSERT(false, return);
 }