]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_sizeinset.C
cosmetics
[features.git] / src / mathed / math_sizeinset.C
index 83cbf6e64f4bd5847402ac85a108fa69bc2d0985..dc2dae86f6bab60407ca072a4b09f6e89b58f210 100644 (file)
@@ -43,26 +43,26 @@ void MathSizeInset::draw(Painter & pain, int x, int y)
 }
 
 
-void MathSizeInset::Metrics(MathStyles /* st */)
+void MathSizeInset::metrics(MathStyles /* st */)
 {
-       xcell(0).Metrics(style_);
+       xcell(0).metrics(style_);
        ascent_   = xcell(0).ascent_;
        descent_  = xcell(0).descent_;
        width_    = xcell(0).width_;
 }
 
 
-void MathSizeInset::Write(std::ostream & os, bool fragile) const
+void MathSizeInset::write(std::ostream & os, bool fragile) const
 {
        os << "{\\" << name() << " ";
-       cell(0).Write(os, fragile);
+       cell(0).write(os, fragile);
        os << "}";
 }
 
 
-void MathSizeInset::WriteNormal(std::ostream & os) const
+void MathSizeInset::writeNormal(std::ostream & os) const
 {
        os << "[" << name() << " ";
-       cell(0).WriteNormal(os);
+       cell(0).writeNormal(os);
        os << "]";
 }