aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/debugger/qqmlprofiler_p.h
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@theqtcompany.com>2015-07-20 18:15:05 +0200
committerUlf Hermann <ulf.hermann@theqtcompany.com>2015-07-29 14:36:20 +0000
commit7784327e71f4d4f727e2d59733fa68122a85997a (patch)
tree68b0119a100f56e6a39aa682eeb0b6921354a773 /src/qml/debugger/qqmlprofiler_p.h
parentc81ff41a16af05f8500bec383d09f83755addde7 (diff)
Use QVector rather than QList for storing QQmlProfilerData
Change-Id: I94519181e915c5e2df9614ad4e1180fb159252e3 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/debugger/qqmlprofiler_p.h')
-rw-r--r--src/qml/debugger/qqmlprofiler_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/debugger/qqmlprofiler_p.h b/src/qml/debugger/qqmlprofiler_p.h
index 5c994b112f..71efa69490 100644
--- a/src/qml/debugger/qqmlprofiler_p.h
+++ b/src/qml/debugger/qqmlprofiler_p.h
@@ -171,7 +171,7 @@ public slots:
void setTimer(const QElapsedTimer &timer) { m_timer = timer; }
signals:
- void dataReady(const QList<QQmlProfilerData> &);
+ void dataReady(const QVector<QQmlProfilerData> &);
protected:
QElapsedTimer m_timer;
@@ -185,10 +185,10 @@ public:
qint64 sendMessages(qint64 until, QList<QByteArray> &messages);
public slots:
- void receiveData(const QList<QQmlProfilerData> &new_data);
+ void receiveData(const QVector<QQmlProfilerData> &new_data);
private:
- QList<QQmlProfilerData> data;
+ QVector<QQmlProfilerData> data;
};
//
@@ -332,6 +332,6 @@ private:
};
QT_END_NAMESPACE
-Q_DECLARE_METATYPE(QList<QQmlProfilerData>)
+Q_DECLARE_METATYPE(QVector<QQmlProfilerData>)
#endif // QQMLPROFILER_P_H