From 5f8ca97f51d41cd313f028f25f2cb8c10922dfb0 Mon Sep 17 00:00:00 2001 From: Matthias Rauter Date: Tue, 10 Jun 2025 16:38:07 +0200 Subject: [PATCH] Make include guard match its filename Change-Id: I57af3c237bddffc424cab734faa30deacaa9bcdb Reviewed-by: Edward Welbourne (cherry picked from commit dd81b421270a390aff6e686677575ed6d017cd9d) Reviewed-by: Qt Cherry-pick Bot --- src/corelib/ipc/qtipccommon.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/corelib/ipc/qtipccommon.h b/src/corelib/ipc/qtipccommon.h index d520a4dd682..658a426914f 100644 --- a/src/corelib/ipc/qtipccommon.h +++ b/src/corelib/ipc/qtipccommon.h @@ -1,8 +1,8 @@ // Copyright (C) 2022 Intel Corporation. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only -#ifndef QNATIVEIPCKEY_H -#define QNATIVEIPCKEY_H +#ifndef QTIPCCOMMON_H +#define QTIPCCOMMON_H #include #include @@ -207,4 +207,4 @@ QT_END_NAMESPACE #endif // QT_CONFIG(sharedmemory) || QT_CONFIG(systemsemaphore) -#endif // QNATIVEIPCKEY_H +#endif // QTIPCCOMMON_H