diff options
author | Ulf Hermann <ulf.hermann@digia.com> | 2014-10-28 19:01:43 +0100 |
---|---|---|
committer | Ulf Hermann <ulf.hermann@theqtcompany.com> | 2014-11-21 14:03:58 +0100 |
commit | 10d942e268201e8ed51abaeea7f49d89a8eacfb1 (patch) | |
tree | 11f41c88cec9f829d4bbed41b7d0b46049b3a716 /src/plugins/qmlprofiler/qmlprofilerrangemodel.h | |
parent | af84726c51cab0bcf5555d892db2238c3a330e11 (diff) | |
download | qt-creator-10d942e268201e8ed51abaeea7f49d89a8eacfb1.tar.gz |
QmlProfiler: Split AbstractTimelineModel in two classes
We need a general purpose TimelineModel and a specialized
QmlProfilerTimelineModel.
Change-Id: I2da02d65efa11e160cab5fa9f8a21075beb0e2bf
Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilerrangemodel.h')
-rw-r--r-- | src/plugins/qmlprofiler/qmlprofilerrangemodel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerrangemodel.h b/src/plugins/qmlprofiler/qmlprofilerrangemodel.h index f19db06318..b9bc8ed643 100644 --- a/src/plugins/qmlprofiler/qmlprofilerrangemodel.h +++ b/src/plugins/qmlprofiler/qmlprofilerrangemodel.h @@ -32,7 +32,7 @@ #ifndef QMLPROFILERRANGEMODEL_H #define QMLPROFILERRANGEMODEL_H -#include "abstracttimelinemodel.h" +#include "qmlprofilertimelinemodel.h" #include <qmldebug/qmlprofilereventtypes.h> #include <qmldebug/qmlprofilereventlocation.h> #include <QVariantList> @@ -44,7 +44,7 @@ class QmlProfilerModelManager; namespace Internal { -class QmlProfilerRangeModel : public AbstractTimelineModel +class QmlProfilerRangeModel : public QmlProfilerTimelineModel { Q_OBJECT public: |