aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/qmlprofiler/qmlprofilerextensionplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/qmlprofiler/qmlprofilerextensionplugin.cpp')
-rw-r--r--plugins/qmlprofiler/qmlprofilerextensionplugin.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/qmlprofiler/qmlprofilerextensionplugin.cpp b/plugins/qmlprofiler/qmlprofilerextensionplugin.cpp
index 0015b02f97..b4ab349d05 100644
--- a/plugins/qmlprofiler/qmlprofilerextensionplugin.cpp
+++ b/plugins/qmlprofiler/qmlprofilerextensionplugin.cpp
@@ -45,6 +45,7 @@
#include "pixmapcachemodel.h"
#include "memoryusagemodel.h"
#include "inputeventsmodel.h"
+#include "debugmessagesmodel.h"
using namespace QmlProfilerExtension::Internal;
@@ -58,7 +59,8 @@ public:
models << new PixmapCacheModel(manager, this)
<< new SceneGraphTimelineModel(manager, this)
<< new MemoryUsageModel(manager, this)
- << new InputEventsModel(manager, this);
+ << new InputEventsModel(manager, this)
+ << new DebugMessagesModel(manager, this);
return models;
}
};