]> git.lyx.org Git - lyx.git/blobdiff - src/Row.cpp
This is the first of a series of commits that will make InsetLayout a real class.
[lyx.git] / src / Row.cpp
index 317244a792fdad5b615da9361a10bf6e0307cc21..013f6445e8bf02d843ed7c31d1156e80c4eb727b 100644 (file)
 #include <config.h>
 
 #include "Row.h"
-#include "debug.h"
+
+#include "support/debug.h"
 
 
 namespace lyx {
 
 
 Row::Row()
-       : separator(0), hfill(0), label_hfill(0), x(0),
+       : separator(0), label_hfill(0), x(0),
        sel_beg(-1), sel_end(-1), changed_(false), crc_(0), pos_(0), end_(0)
 {}
 
 
 Row::Row(pos_type pos)
-       : separator(0), hfill(0), label_hfill(0), x(0),
+       : separator(0), label_hfill(0), x(0),
        sel_beg(-1), sel_end(-1), changed_(false), crc_(0), pos_(pos), end_(0)
 {}