]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_gridinset.C
Replace LString.h with support/std_string.h,
[features.git] / src / mathed / math_gridinset.C
index 35ce8c30c3f9d9a1b0dcbddb19ba94009c0f4d71..5d21dfd5d0bd0bba243e400cffbcd6cfd357ca5a 100644 (file)
@@ -1,11 +1,22 @@
+/**
+ * \file math_gridinset.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>
+
 #include "math_gridinset.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
-#include "lyxfont.h"
 #include "funcrequest.h"
 #include "frontends/Painter.h"
 #include "debug.h"
-#include "Lsstream.h"
+#include "support/std_sstream.h"
 
 
 #include "insets/mailinset.h"
@@ -16,6 +27,7 @@ using std::min;
 using std::vector;
 using std::istream;
 using std::auto_ptr;
+using std::endl;
 
 
 class GridInsetMailer : public MailInset {
@@ -115,7 +127,7 @@ MathGridInset::MathGridInset(char v, string const & h)
        setDefaults();
        valign(v);
        halign(h);
-       //lyxerr << "created grid with " << ncols() << " columns\n";
+       //lyxerr << "created grid with " << ncols() << " columns" << endl;
 }
 
 
@@ -176,9 +188,9 @@ MathInset::idx_type MathGridInset::index(row_type row, col_type col) const
 void MathGridInset::setDefaults()
 {
        if (ncols() <= 0)
-               lyxerr << "positive number of columns expected\n";
+               lyxerr << "positive number of columns expected" << endl;
        //if (nrows() <= 0)
-       //      lyxerr << "positive number of rows expected\n";
+       //      lyxerr << "positive number of rows expected" << endl;
        for (col_type col = 0; col < ncols(); ++col) {
                colinfo_[col].align_ = defaultColAlign(col);
                colinfo_[col].skip_  = defaultColSpace(col);
@@ -200,7 +212,7 @@ void MathGridInset::halign(string const & hh)
                        ++col;
                        colinfo_[col].lines_ = 0;
                } else {
-                       lyxerr << "unknown column separator: '" << c << "'\n";
+                       lyxerr << "unknown column separator: '" << c << "'" << endl;
                }
        }
 
@@ -1078,13 +1090,13 @@ dispatch_result MathGridInset::dispatch
                }
 
                case LFUN_TABULAR_FEATURE: {
-                       //lyxerr << "handling tabular-feature " << cmd.argument << "\n";
+                       //lyxerr << "handling tabular-feature " << cmd.argument << endl;
                        istringstream is(STRCONV(cmd.argument));
                        string s;
                        is >> s;
                        if (s == "valign-top")
                                valign('t');
-                       else if (s == "valign-center")
+                       else if (s == "valign-middle")
                                valign('c');
                        else if (s == "valign-bottom")
                                valign('b');
@@ -1130,12 +1142,12 @@ dispatch_result MathGridInset::dispatch
                                swapCol(col(idx));
                        else
                                return UNDISPATCHED;
-                       lyxerr << "returning DISPATCHED_POP\n";
+                       lyxerr << "returning DISPATCHED_POP" << endl;
                        return DISPATCHED_POP;
                }
 
                case LFUN_PASTE: {
-                       //lyxerr << "pasting '" << cmd.argument << "'\n";
+                       //lyxerr << "pasting '" << cmd.argument << "'" << endl;
                        MathGridInset grid(1, 1);
                        mathed_parse_normal(grid, cmd.argument);
                        if (grid.nargs() == 1) {