diff options
author | Sergio Ahumada <[email protected]> | 2012-09-15 16:51:51 +0200 |
---|---|---|
committer | Qt by Nokia <[email protected]> | 2012-09-15 23:54:23 +0200 |
commit | 9bedada232fb821f1fba2c1bdbd24702947dcaed (patch) | |
tree | 70c4847bc269eb4551a05afc6b0de16d168b7575 /src/gui/opengl/qopenglgradientcache_p.h | |
parent | 7329ad3ee59fedc68758289677f3ece617858708 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/gui/opengl/qopenglgradientcache_p.h')
-rw-r--r-- | src/gui/opengl/qopenglgradientcache_p.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/opengl/qopenglgradientcache_p.h b/src/gui/opengl/qopenglgradientcache_p.h index 7acc8c1d9d0..47837e5673c 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 |