]> git.lyx.org Git - lyx.git/blobdiff - src/TexRow.cpp
Pure HTML output for math macros.
[lyx.git] / src / TexRow.cpp
index 59a8779309d76a56e51bb53052a6a2658b348741..f019c25ea31769fba74b26be224014485f430724 100644 (file)
@@ -4,7 +4,7 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Matthias Ettrich
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  * \author John Levon
  *
  * Full author contact details are available in file CREDITS.
@@ -44,6 +44,12 @@ void TexRow::newline()
        rowlist.push_back(tmp);
 }
 
+void TexRow::newlines(int num_lines)
+{
+       for (int i = 0; i < num_lines; ++i) {
+               newline();
+       }
+}
 
 bool TexRow::getIdFromRow(int row, int & id, int & pos) const
 {