]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_parboxinset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_parboxinset.C
index 959be94e5271e33876efb15c3817ee8970f7b26e..e98937b7f00d8c4020dfff0b95f08154018f71e7 100644 (file)
@@ -1,3 +1,5 @@
+#include <config.h>
+
 #include "math_parboxinset.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
@@ -5,12 +7,13 @@
 #include "debug.h"
 
 using std::auto_ptr;
+using std::endl;
 
 
 MathParboxInset::MathParboxInset()
        : lyx_width_(0), tex_width_("0mm"), position_('c')
 {
-       lyxerr << "constructing MathParboxInset\n";
+       lyxerr << "constructing MathParboxInset" << endl;
 }
 
 
@@ -30,7 +33,7 @@ void MathParboxInset::setWidth(string const & w)
 {
        tex_width_ = w;
        lyx_width_ = LyXLength(w).inBP();
-       lyxerr << "setting " << w << " to " << lyx_width_ << " pixel\n";
+       lyxerr << "setting " << w << " to " << lyx_width_ << " pixel" << endl;
 }