]> git.lyx.org Git - lyx.git/blobdiff - src/texrow.C
add missing typename
[lyx.git] / src / texrow.C
index c67c88392e8fd7cf000439c2f6888098f7dc7fb0..84d9c7ce009cdb11c7198477d50702135ab064da 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
- * ====================================================== 
- * 
+ * ======================================================
+ *
  *           LyX, The Document Processor
- *      
+ *
  *         Copyright 1995 Matthias Ettrich
  *          Copyright 1995-2001 The LyX Team.
  *
@@ -57,7 +57,7 @@ void TexRow::newline()
 
 class same_rownumber {
 public:
-       same_rownumber(TexRow::RowList::value_type const & v):vt(v){}
+       same_rownumber(TexRow::RowList::value_type const & v):vt(v) {}
        bool operator()(TexRow::RowList::value_type const & vt1) const {
                return vt.rownumber() == vt1.rownumber();
        }
@@ -73,7 +73,7 @@ bool TexRow::getIdFromRow(int row, int & id, int & pos) const
        vt.rownumber(row);
        RowList::const_iterator cit =
                find_if(rowlist.begin(), rowlist.end(), same_rownumber(vt));
-       
+
        if (cit != rowlist.end()) {
                id = cit->id();
                pos = cit->pos();
@@ -118,4 +118,4 @@ TexRow & TexRow::operator+= (TexRow const & tr)
 {
        rowlist.insert(rowlist.end(), tr.rowlist.begin(), tr.rowlist.end());
        return *this;
-}      
+}