]> git.lyx.org Git - features.git/blobdiff - src/TexRow.cpp
Initialize member
[features.git] / src / TexRow.cpp
index 460a141600194adccca48685bab7af85cac7ef2d..0d6596680be0d5684e17bbef20354297334a4b15 100644 (file)
 
 #include <config.h>
 
+#include "TexRow.h"
+
 #include "Buffer.h"
 #include "Cursor.h"
 #include "FuncRequest.h"
 #include "Paragraph.h"
-#include "TexRow.h"
 
 #include "mathed/InsetMath.h"
 
@@ -250,7 +251,7 @@ TexRow::getEntriesFromRow(int const row) const
        //        correspond to no output by delaying their addition, at the level
        //        of otexrowstream, until a character is actually output.
        //
-       LYXERR(Debug::LATEX, "getEntriesFromRow: row " << row << " requested");
+       LYXERR(Debug::OUTFILE, "getEntriesFromRow: row " << row << " requested");
 
        // check bounds for row - 1, our target index
        if (row <= 0)
@@ -359,7 +360,7 @@ FuncRequest TexRow::goToFuncFromRow(int const row) const
 {
        TextEntry start, end;
        tie(start,end) = getEntriesFromRow(row);
-       LYXERR(Debug::LATEX,
+       LYXERR(Debug::OUTFILE,
               "goToFuncFromRow: for row " << row << ", TexRow has found "
               "start (id=" << start.id << ",pos=" << start.pos << "), "
               "end (id=" << end.id << ",pos=" << end.pos << ")");