aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2023-11-21 10:27:56 +0100
committerChristian Stenger <christian.stenger@qt.io>2023-11-21 13:58:36 +0000
commit712586221278c29b9d1a5e73eeaa5b038bda7a7f (patch)
tree21c3f7e7b9d3242db61c4014863904495c1a6347
parent72a8e2e6446cf9b427021859e02ecc24105e649e (diff)
Add some include guards
Change-Id: If306f95f206e2b1cba48df806c822b8e2d27cf72 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
-rw-r--r--src/plugins/android/avdmanageroutputparser.h2
-rw-r--r--src/plugins/cmakeprojectmanager/projecttreehelper.h2
-rw-r--r--src/plugins/python/pythonwizardpage.h2
-rw-r--r--src/plugins/silversearcher/silversearcherparser_test.h2
-rw-r--r--src/tools/buildoutputparser/outputprocessor.h2
5 files changed, 10 insertions, 0 deletions
diff --git a/src/plugins/android/avdmanageroutputparser.h b/src/plugins/android/avdmanageroutputparser.h
index ac65fce02b..b3a74f8fc8 100644
--- a/src/plugins/android/avdmanageroutputparser.h
+++ b/src/plugins/android/avdmanageroutputparser.h
@@ -1,6 +1,8 @@
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+#pragma once
+
#include "androiddeviceinfo.h"
namespace Android {
diff --git a/src/plugins/cmakeprojectmanager/projecttreehelper.h b/src/plugins/cmakeprojectmanager/projecttreehelper.h
index aa655492d4..08707360ed 100644
--- a/src/plugins/cmakeprojectmanager/projecttreehelper.h
+++ b/src/plugins/cmakeprojectmanager/projecttreehelper.h
@@ -1,6 +1,8 @@
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+#pragma once
+
#include "cmakeprojectnodes.h"
#include <utils/filepath.h>
diff --git a/src/plugins/python/pythonwizardpage.h b/src/plugins/python/pythonwizardpage.h
index 6cf8a130c5..9691e76752 100644
--- a/src/plugins/python/pythonwizardpage.h
+++ b/src/plugins/python/pythonwizardpage.h
@@ -1,6 +1,8 @@
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+#pragma once
+
#include <projectexplorer/jsonwizard/jsonwizard.h>
#include <projectexplorer/jsonwizard/jsonwizardpagefactory.h>
#include <projectexplorer/runconfigurationaspects.h>
diff --git a/src/plugins/silversearcher/silversearcherparser_test.h b/src/plugins/silversearcher/silversearcherparser_test.h
index 6d85cd2198..4278fb9515 100644
--- a/src/plugins/silversearcher/silversearcherparser_test.h
+++ b/src/plugins/silversearcher/silversearcherparser_test.h
@@ -1,6 +1,8 @@
// Copyright (C) 2017 Przemyslaw Gorszkowski <pgorszkowski@gmail.com>.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+#pragma once
+
#include <QObject>
namespace SilverSearcher {
diff --git a/src/tools/buildoutputparser/outputprocessor.h b/src/tools/buildoutputparser/outputprocessor.h
index 4a34a5203e..d0ca1616fb 100644
--- a/src/tools/buildoutputparser/outputprocessor.h
+++ b/src/tools/buildoutputparser/outputprocessor.h
@@ -1,6 +1,8 @@
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+#pragma once
+
#include <QObject>
QT_BEGIN_NAMESPACE