]> git.lyx.org Git - features.git/blobdiff - src/box.C
Replace LString.h with support/std_string.h,
[features.git] / src / box.C
index 159be4cc3ba47ad650c939aec5cb444b6f0917f8..eda92d751a962821aa371bfaceeeeceab8b9a527 100644 (file)
--- a/src/box.C
+++ b/src/box.C
 
 #include "box.h"
 
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
 
 using std::ostream;
 
 
-Box::Box(int x1_, int x2_, int y1_, int y2_) :
-       x1(x1_), x2(x2_), y1(y1_), y2(y2_)
+Box::Box(
+       : x1(0), x2(0), y1(0), y2(0)
 {}
 
 
-bool Box::contained(int x, int y)
+Box::Box(int x1_, int x2_, int y1_, int y2_)
+       : x1(x1_), x2(x2_), y1(y1_), y2(y2_)
+{}
+
+
+bool Box::contains(int x, int y)
 {
        return (x1 < x && x2 > x && y1 < y && y2 > y);
 }