aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprofiler
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2019-08-15 12:27:03 +0200
committerTobias Hunger <tobias.hunger@qt.io>2019-08-15 10:38:51 +0000
commitbc6628d03702ad87ea465329924295a08b3d60c9 (patch)
treea5b158c0b07baf55ac1250255a3f9ba0d6e27894 /src/plugins/qmlprofiler
parent3b41b9b24be08f08106dd820614988b1ac426d82 (diff)
QmlProfiler: Remove unnecessary parameter from test code
Change-Id: Ia1963e316f7c56357989440a13af5d73488ffece Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/qmlprofiler')
-rw-r--r--src/plugins/qmlprofiler/tests/qmlprofilerdetailsrewriter_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmlprofiler/tests/qmlprofilerdetailsrewriter_test.cpp b/src/plugins/qmlprofiler/tests/qmlprofilerdetailsrewriter_test.cpp
index b3d1cbb511..50be99a19d 100644
--- a/src/plugins/qmlprofiler/tests/qmlprofilerdetailsrewriter_test.cpp
+++ b/src/plugins/qmlprofiler/tests/qmlprofilerdetailsrewriter_test.cpp
@@ -48,8 +48,8 @@ class DummyProject : public ProjectExplorer::Project
{
Q_OBJECT
public:
- DummyProject(const Utils::FilePath &file) :
- ProjectExplorer::Project(QString(), file, {})
+ DummyProject(const Utils::FilePath &file)
+ : ProjectExplorer::Project(QString(), file)
{
auto fileNode
= std::make_unique<ProjectExplorer::FileNode>(file, ProjectExplorer::FileType::Source);