X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbox.C;h=b4d8bdd5bc5b497f444c8a04f145c24cd85539ec;hb=3c851f1f7951f3a24b57826f3e580e4318b5e6c4;hp=4ee0b2afb036229096309624d7a3cf6e3416b252;hpb=781e0ef62e262a633b094917eb40a5b840fea913;p=lyx.git diff --git a/src/box.C b/src/box.C index 4ee0b2afb0..b4d8bdd5bc 100644 --- a/src/box.C +++ b/src/box.C @@ -14,18 +14,20 @@ #include "box.h" -#include "support/LOstream.h" +#include "support/std_ostream.h" using std::ostream; +Box::Box() + : x1(0), x2(0), y1(0), y2(0) +{} + + 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::contains(int x, int y) {