There's no QVector anymore, QList is the QVector in Qt6

This commit is contained in:
Laurent Montel
2023-10-19 13:41:46 +02:00
parent 6571dbe554
commit c7614caf41
31 changed files with 67 additions and 67 deletions

View File

@@ -158,7 +158,7 @@ public:
/**
* @brief Retrieve the mentions for the current chat bar text.
*/
QVector<Mention> *mentions();
QList<Mention> *mentions();
/**
* @brief Get the saved chat bar text.
@@ -180,6 +180,6 @@ private:
QString m_relationId = QString();
RelationType m_relationType = RelationType::None;
QString m_attachmentPath = QString();
QVector<Mention> m_mentions;
QList<Mention> m_mentions;
QString m_savedText;
};