aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/qmlprofilerextended/scenegraphtimelinemodel.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/qmlprofilerextended/scenegraphtimelinemodel.cpp b/plugins/qmlprofilerextended/scenegraphtimelinemodel.cpp
index 73bc92c229..27c5800ff5 100644
--- a/plugins/qmlprofilerextended/scenegraphtimelinemodel.cpp
+++ b/plugins/qmlprofilerextended/scenegraphtimelinemodel.cpp
@@ -19,6 +19,7 @@
#include "qmldebug/qmlprofilereventtypes.h"
#include "qmlprofiler/qmlprofilermodelmanager.h"
+#include <QCoreApplication>
#include <QDebug>
namespace QmlProfilerExtended {
@@ -264,9 +265,9 @@ QString labelForSGType(int t)
{
switch ((SceneGraphCategoryType)t) {
case SceneGraphRenderThread:
- return QGuiApplication::translate("SceneGraphTimelineModel", "Renderer Thread");
+ return QCoreApplication::translate("SceneGraphTimelineModel", "Renderer Thread");
case SceneGraphGUIThread:
- return QGuiApplication::translate("SceneGraphTimelineModel", "GUI Thread");
+ return QCoreApplication::translate("SceneGraphTimelineModel", "GUI Thread");
default: return QString();
}
}