]> git.lyx.org Git - lyx.git/blobdiff - src/metricsinfo.C
Point fix, earlier forgotten
[lyx.git] / src / metricsinfo.C
index 1a66b53eb014d1bc1e0017416897bb214374a156..85ee9edb634b9d9e70b22e28a2e785180753c79c 100644 (file)
@@ -1,3 +1,12 @@
+/**
+ * \file metricsinfo.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
 #include <config.h>
 
 
 MetricsBase::MetricsBase()
        : bv(0), font(), style(LM_ST_TEXT), fontname("mathnormal"),
-         restrictwidth(false), textwidth(0)
+         textwidth(0)
 {}
 
 
 
+MetricsBase::MetricsBase(BufferView * b, LyXFont const & f, int w)
+       : bv(b), font(f), style(LM_ST_TEXT), fontname("mathnormal"),
+         textwidth(w)
+{}
+
+
 
 MetricsInfo::MetricsInfo()
 {}
 
 
+MetricsInfo::MetricsInfo(BufferView * bv, LyXFont const & font, int textwidth)
+       : base(bv, font, textwidth)
+{}
+
 
 
 PainterInfo::PainterInfo(BufferView * bv)
@@ -139,7 +158,6 @@ WidthChanger::WidthChanger(MetricsBase & mb, int w)
        :       Changer<MetricsBase>(mb)
 {
        save_ = mb;
-       mb.restrictwidth = true;
        mb.textwidth     = w;
 }