| # | Line 56 | Line 56 | QString MultiDimVar::toString(){ | |
|---|---|---|
| 56 | result += QString::number(this->multiDimValue[i],'G',9) + " "; // G is the option used by onisplit | |
| 57 | } | |
| 58 | ||
| 59 | < | result += QString::number(this->multiDimValue.size()-1,'G',9); // last one does not have a space at the end |
| 59 | > | result += QString::number(this->multiDimValue[this->multiDimValue.size()-1],'G',9); // last one does not have a space at the end |
| 60 | ||
| 61 | return result; | |
| 62 | ||
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |