]> git.lyx.org Git - lyx.git/blobdiff - src/texrow.C
hopefully fix tex2lyx linking.
[lyx.git] / src / texrow.C
index b2a883aae6ba3d5710c1bae80fcf2941d84b04dc..ee4b7410946a3fc08e4f3d1ad2676a1e2d9bb4b7 100644 (file)
@@ -1,9 +1,13 @@
 /**
  * \file texrow.C
- * Copyright 1995-2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Matthias Ettrich
+ * \author Lars Gullik Bjønnes
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
 #include <algorithm>
 
+
+namespace lyx {
+
 using std::find_if;
-using std::endl;
+
 
 namespace {
 
@@ -79,3 +86,6 @@ TexRow & TexRow::operator+=(TexRow const & tr)
        rowlist.insert(rowlist.end(), tr.rowlist.begin(), tr.rowlist.end());
        return *this;
 }
+
+
+} // namespace lyx