]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_funcinset.C
cosmetics
[features.git] / src / mathed / math_funcinset.C
index 933b0f344695dfed8de428688a410abb7329b86b..e0ce29cddff29b83057707e12102a05749fb13f5 100644 (file)
@@ -17,7 +17,7 @@ extern LyXFont WhichFont(short type, int size);
 MathFuncInset::MathFuncInset(string const & nm, MathInsetTypes ot)
        : MathInset(0, nm, ot)
 {
-       lims_ = (GetType() == LM_OT_FUNCLIM);
+       lims_ = (getType() == LM_OT_FUNCLIM);
 }
 
 
@@ -27,19 +27,19 @@ MathInset * MathFuncInset::clone() const
 }
 
 
-void MathFuncInset::Write(std::ostream & os, bool /* fragile */) const
+void MathFuncInset::write(std::ostream & os, bool /* fragile */) const
 {
        os << "\\" << name_ << ' ';
 }
 
 
-void MathFuncInset::WriteNormal(std::ostream & os) const
+void MathFuncInset::writeNormal(std::ostream & os) const
 {
        os << "[" << name_ << "] ";
 }
 
 
-void MathFuncInset::Metrics(MathStyles st) 
+void MathFuncInset::metrics(MathStyles st) 
 {
        size_ = st;
        if (name_.empty())