]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotable.C
Add In nsetOld * argument to updateInset to rebreak the correct par.
[lyx.git] / src / mathed / math_macrotable.C
index 592906c74e683be9030d9fd6f0e0090abc2c5846..885bd5b3b3738e00df1d4d466397937c7348cea7 100644 (file)
@@ -1,10 +1,14 @@
-#include <config.h>
-
-#include <iostream>
+/**
+ * \file math_macrotable.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.
+ */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <config.h>
 
 #include "math_macrotable.h"
 #include "math_macro.h"
 #include "debug.h"
 #include "math_support.h" // math_font_available
 
+#include <iostream>
+
+using std::endl;
+
 
 MathMacroTable::table_type MathMacroTable::macro_table;
 
@@ -21,13 +29,13 @@ MathMacroTable::table_type MathMacroTable::macro_table;
 void MathMacroTable::dump()
 {
 /*
-       lyxerr << "\n------------------------------------------\n";
+       lyxerr << "\n------------------------------------------" << endl;
        table_type::const_iterator it;
        for (it = macro_table.begin(); it != macro_table.end(); ++it)
                lyxerr << it->first
                        << " [" << it->second->asMacroTemplate()->nargs() << "] : "
-                       << it->second->cell(0) << "\n";
-       lyxerr << "------------------------------------------\n";
+                       << it->second->cell(0) << endl;
+       lyxerr << "------------------------------------------" << endl;
 */
 }
 
@@ -37,7 +45,7 @@ MathAtom & MathMacroTable::provide(string const & name)
        table_type::iterator pos = macro_table.find(name);
        if (pos == macro_table.end()) {
                lyxerr << "MathMacroTable::provideTemplate: no template with name '"
-                      << name << "' available.\n";
+                      << name << "' available." << endl;
        }
        return pos->second;
 }