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/opengl/qopenglgradientcache_p.h | 4 ++++ src/gui/opengl/qopengltextureglyphcache_p.h | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'src/gui/opengl') diff --git a/src/gui/opengl/qopenglgradientcache_p.h b/src/gui/opengl/qopenglgradientcache_p.h index 7acc8c1d9d..47837e5673 100644 --- a/src/gui/opengl/qopenglgradientcache_p.h +++ b/src/gui/opengl/qopenglgradientcache_p.h @@ -39,6 +39,9 @@ ** ****************************************************************************/ +#ifndef QOPENGLGRADIENTCACHE_P_H +#define QOPENGLGRADIENTCACHE_P_H + // // W A R N I N G // ------------- @@ -99,3 +102,4 @@ private: QT_END_NAMESPACE +#endif // QOPENGLGRADIENTCACHE_P_H diff --git a/src/gui/opengl/qopengltextureglyphcache_p.h b/src/gui/opengl/qopengltextureglyphcache_p.h index 4b6101e7c9..4ccac0e6ba 100644 --- a/src/gui/opengl/qopengltextureglyphcache_p.h +++ b/src/gui/opengl/qopengltextureglyphcache_p.h @@ -39,8 +39,8 @@ ** ****************************************************************************/ -#ifndef QOPENTEXTUREGLYPHCACHE_P_H -#define QOPENTEXTUREGLYPHCACHE_P_H +#ifndef QOPENGLTEXTUREGLYPHCACHE_P_H +#define QOPENGLTEXTUREGLYPHCACHE_P_H // // W A R N I N G @@ -166,5 +166,5 @@ private: QT_END_NAMESPACE -#endif +#endif // QOPENGLTEXTUREGLYPHCACHE_P_H -- cgit v1.2.3