]> git.lyx.org Git - lyx.git/blobdiff - src/support/translator.h
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / support / translator.h
index 3924956d2695eba49bf7bc9baf7211f63e459df2..bdd9d83434b5fa75315171fe3ea9c93fc4f36bc9 100644 (file)
@@ -1,10 +1,12 @@
 // -*- C++ -*-
 /**
  * \file translator.h
- * 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 Baruch Even <baruch@lyx.org>
+ * \author Baruch Even
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef TRANSLATOR_H
@@ -48,7 +50,7 @@ public:
 
        /// Find the mapping for the first argument
        T2 const & find(T1 const & first) const {
-               lyx::Assert(!map.empty());
+               Assert(!map.empty());
 
                // For explanation see the next find() function.
                typename Map::const_iterator it =
@@ -65,7 +67,7 @@ public:
 
        /// Find the mapping for the second argument
        T1 const & find(T2 const & second) const {
-               lyx::Assert(!map.empty());
+               Assert(!map.empty());
 
                // The idea is as follows:
                // find_if() will try to compare the data in the vector with