DiffEditor: Replace QVector with QList

Change-Id: I79246cc79a2cdcd6150b060386b34ce2f9923456
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Jarek Kobus
2023-07-18 19:07:49 +02:00
parent ab70a04461
commit 171675099c
3 changed files with 5 additions and 5 deletions

View File

@@ -74,7 +74,7 @@ private:
UnifiedView *m_unifiedView = nullptr;
SideBySideView *m_sideBySideView = nullptr;
QStackedWidget *m_stackedWidget = nullptr;
QVector<IDiffView *> m_views;
QList<IDiffView *> m_views;
QToolBar *m_toolBar = nullptr;
QComboBox *m_entriesComboBox = nullptr;
QSpinBox *m_contextSpinBox = nullptr;