]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_dotsinset.C
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_dotsinset.C
index 70e8de37b84461572fb2635c48aec8adb9236952..fd2585452304cfef55f29777960a16efcbc8365e 100644 (file)
@@ -1,9 +1,12 @@
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include "math_dotsinset.h"
 #include "math_mathmlstream.h"
+#include "math_streamstr.h"
 #include "math_support.h"
 
 
@@ -15,7 +18,21 @@ MathDotsInset::MathDotsInset(string const & name)
 MathInset * MathDotsInset::clone() const
 {
        return new MathDotsInset(*this);
-}     
+}
+
+
+void MathDotsInset::metrics(MathMetricsInfo const & mi) const
+{
+       LyXFont font;
+       whichFont(font, LM_TC_VAR, mi);
+       mathed_char_dim(font, 'M', ascent_, descent_, width_);
+       switch (name_[0]) {
+               case 'l': dh_ = 0; break;
+               case 'c': dh_ = ascent_ / 2; break;
+               case 'v': width_ /= 2;
+               case 'd': dh_ = ascent_; break;
+       }
+}
 
 
 void MathDotsInset::draw(Painter & pain, int x, int y) const
@@ -30,25 +47,13 @@ void MathDotsInset::draw(Painter & pain, int x, int y) const
 }
 
 
-void MathDotsInset::metrics(MathMetricsInfo const & mi) const
-{
-       mathed_char_dim(LM_TC_VAR, mi, 'M', ascent_, descent_, width_);
-       switch (name_[0]) {
-               case 'l': dh_ = 0; break;
-               case 'c': dh_ = ascent_ / 2; break;
-               case 'v': width_ /= 2;
-               case 'd': dh_ = ascent_; break;
-       }
-} 
-
-
 void MathDotsInset::write(WriteStream & os) const
 {
-       os << '\\' << name_.c_str() << ' ';
+       os << '\\' << name_ << ' ';
 }
 
 
 void MathDotsInset::normalize(NormalStream & os) const
 {
-       os << "[" << name_.c_str() << "] ";
+       os << "[" << name_ << "] ";
 }