]> git.lyx.org Git - features.git/blobdiff - src/Row.cpp
Remove warnings reported with gcc 4.3:
[features.git] / src / Row.cpp
index 6f1a31c078fbc0c5f2b2288da0934288153324e2..c965210e7a1c258494a2f8af0a2c3e20bd65d2d7 100644 (file)
@@ -24,14 +24,14 @@ namespace lyx {
 
 
 Row::Row()
-       : changed_(false), crc_(0), pos_(0), end_(0), separator(0), hfill(0),
-       label_hfill(0), x(0), sel_beg(-1), sel_end(-1)
+       : separator(0), hfill(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)
-       : changed_(false), crc_(0), pos_(pos), end_(0), separator(0), hfill(0),
-       label_hfill(0), x(0), sel_beg(-1), sel_end(-1)
+       : separator(0), hfill(0), label_hfill(0), x(0),
+       sel_beg(-1), sel_end(-1), changed_(false), crc_(0), pos_(pos), end_(0)
 {}
 
 
@@ -89,7 +89,7 @@ void Row::setSelection(pos_type beg, pos_type end)
 }
 
 
-void Row::dump(const char * s) const
+void Row::dump(char const * s) const
 {
        lyxerr << s << " pos: " << pos_ << " end: " << end_
                << " width: " << dim_.wid