]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_xiter.C
mathed53.diff
[features.git] / src / mathed / math_xiter.C
index d242a58081f12a51a40f730225b10d7f068997fb..c29e1b6d46f73f5043df86268fe442b80df858b8 100644 (file)
@@ -571,26 +571,6 @@ bool MathedXIter::setLabel(string const & label)
 }
 
 
-MathedRowSt * MathedXIter::adjustVerticalSt()
-{
-       GoBegin();
-       if (!crow_) {
-               crow_.st_ = new MathedRowSt(ncols + 1); // this leaks
-       }
-       MathedRowSt * mrow = crow_.st_;
-       while (OK()) {
-               if (IsCR()) {
-                       if (col >= ncols)
-                               ncols = col + 1; 
-                       MathedRowSt * r = new MathedRowSt(ncols + 1); // this leaks
-                       crow_.st_->next_ = r;
-                       crow_.st_ = r;
-               }   
-               Next(); 
-       }
-       return mrow;
-}
-
 
 string const & MathedXIter::getLabel() const
 {