From 9bedada232fb821f1fba2c1bdbd24702947dcaed Mon Sep 17 00:00:00 2001 From: Sergio Ahumada Date: Sat, 15 Sep 2012 16:51:51 +0200 Subject: gui/opengl: Fix missing or improper include guard in headers Use an include guard in headers to ensure the header is not included more than once. Make the header guard match its file name. Change-Id: I29b41e9d33e4ea17165f44c49de0a963574dd809 Reviewed-by: Konstantin Ritt --- src/gui/kernel/qplatformscreen_p.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gui/kernel/qplatformscreen_p.h') diff --git a/src/gui/kernel/qplatformscreen_p.h b/src/gui/kernel/qplatformscreen_p.h index ced66be8d7..812c10f41c 100644 --- a/src/gui/kernel/qplatformscreen_p.h +++ b/src/gui/kernel/qplatformscreen_p.h @@ -39,8 +39,8 @@ ** ****************************************************************************/ -#ifndef QPLATFORMSCREEN_QPA_P_H -#define QPLATFORMSCREEN_QPA_P_H +#ifndef QPLATFORMSCREEN_P_H +#define QPLATFORMSCREEN_P_H // // W A R N I N G @@ -71,4 +71,4 @@ QT_END_NAMESPACE QT_END_HEADER -#endif // QPLATFORMSCREEN_QPA_P_H +#endif // QPLATFORMSCREEN_P_H -- cgit v1.2.3