Alfredo Braunstein wrote: > Something like > > for (unsigned i = cur.size() - 1; i >= 0; --i) > ifÂ(cur[i].inset().lyxCode()Â==ÂInsetBase::TABULAR_CODE) { > in = cur[i].inset(); > idxÂ=Âcur[i].idx(); > ... > }
Better use a ">" or an int and add a break at the end of that if block ;-) Alfredo