replace qvector with qlist (#3519)

This commit is contained in:
Alexandru Ionut Tripon
2025-04-29 00:32:40 +03:00
committed by GitHub
45 changed files with 102 additions and 107 deletions

View File

@ -42,7 +42,7 @@ class LogModel : public QAbstractListModel {
};
private: /* data */
QVector<entry> m_content;
QList<entry> m_content;
int m_maxLines = 1000;
// first line in the circular buffer
int m_firstLine = 0;