]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrow.C
Change to use preffered calling of Boost.Function
[lyx.git] / src / lyxrow.C
index bf4d0a6b406146b590071d0a122f07b5dabe894f..5416e69b1b73d58cf6ce0e0be68befaaf125ec87 100644 (file)
 using lyx::pos_type;
 
 
+RowMetrics::RowMetrics() : separator(0), hfill(0), label_hfill(0), x(0)
+{}
+
+
 Row::Row()
        : pos_(0), end_(0), height_(0), width_(0), y_offset_(0),
-         ascent_of_text_(0), baseline_(0),
-         x_(0), fill_separator_(0), fill_hfill_(0), fill_label_hfill_(0)
+         ascent_of_text_(0), baseline_(0)
 {}
 
 
 Row::Row(pos_type pos)
        : pos_(pos), end_(0), height_(0), width_(0), y_offset_(0),
-         ascent_of_text_(0), baseline_(0),
-         x_(0), fill_separator_(0), fill_hfill_(0), fill_label_hfill_(0)
+         ascent_of_text_(0), baseline_(0)
 {}
 
 
@@ -108,54 +110,6 @@ unsigned int Row::baseline() const
 }
 
 
-float Row::x() const
-{
-       return x_;
-}
-
-
-void Row::x(float f)
-{
-       x_ = f;
-}
-
-
-float Row::fill_separator() const
-{
-       return fill_separator_;
-}
-
-
-void Row::fill_separator(float f)
-{
-       fill_separator_ = f;
-}
-
-
-float Row::fill_hfill() const
-{
-       return fill_hfill_;
-}
-
-
-void Row::fill_hfill(float f)
-{
-       fill_hfill_ = f;
-}
-
-
-float Row::fill_label_hfill() const
-{
-       return fill_label_hfill_;
-}
-
-
-void Row::fill_label_hfill(float f)
-{
-       fill_label_hfill_ = f;
-}
-
-
 bool Row::isParStart() const
 {
        return !pos();
@@ -170,4 +124,3 @@ void Row::dump(const char * s) const
                << " top_of_text: " << top_of_text_
                << " y_offset: " << y_offset_ << std::endl;
 }
-