]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_diminset.C
small up/down tweaking
[lyx.git] / src / mathed / math_diminset.C
index 02d7623f2270791b810cbab8881876bbf96c3ea9..2e9e75ef71968ffc25dc8fe158623e62a520174e 100644 (file)
@@ -1,27 +1,32 @@
+#ifdef __GNUG__
+#pragma implementation
+#endif
+
 #include "math_diminset.h"
 #include "Lsstream.h"
 #include "textpainter.h"
 
 
-void MathDimInset::dimensions(Dimension & dim) const
-{
-       dim = dim_;
-}
-
-
 void MathDimInset::metricsT(TextMetricsInfo const &) const
 {
+#ifndef WITH_WARNINGS
+#warning temporarily disabled
+#endif
+/*
        std::ostringstream os;
-       os << *this;
+       os << MathAtom(this);
        dim_.w = int(os.str().size());
        dim_.a = 1;
        dim_.d = 0;
+*/
 }
 
 
-void MathDimInset::drawT(TextPainter & pain, int x, int y) const
+void MathDimInset::drawT(TextPainter &, int, int) const
 {
+/*
        std::ostringstream os;
-       os << *this;
-       pain.draw(x, y, os.str().c_str());
+       os << MathAtom(this);
+       pain.draw(x, y, STRCONV(os.str()));
+*/
 }