| 1667 | } |
| 1668 | |
| 1669 | void ConsoleHistory::append(const QString& item) |
| 1670 | { |
| 1671 | _history.append(item); |
| 1672 | // reset iterator to make the next history |
| 1673 | // access begin with the latest item. |
| 1674 | _it = _history.cend(); |
| 1675 | } |
| 1676 | |
| 1677 | const QStringList& ConsoleHistory::values() const |
| 1678 | { |
no test coverage detected