From 15eeb0e7dc300877a80b34eb4764502df85901ed Mon Sep 17 00:00:00 2001 From: Sergio Ahumada Date: Wed, 5 Sep 2012 12:40:51 +0200 Subject: 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: Icf7d7d4bed91443b3b21ef5d4219dbd260dffef3 Reviewed-by: Thiago Macieira --- src/corelib/kernel/qfunctions_wince.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/corelib/kernel/qfunctions_wince.h') diff --git a/src/corelib/kernel/qfunctions_wince.h b/src/corelib/kernel/qfunctions_wince.h index bc2124897d..c84687ac68 100644 --- a/src/corelib/kernel/qfunctions_wince.h +++ b/src/corelib/kernel/qfunctions_wince.h @@ -39,8 +39,8 @@ ** ****************************************************************************/ -#ifndef QFUNCTIONS_WCE_H -#define QFUNCTIONS_WCE_H +#ifndef QFUNCTIONS_WINCE_H +#define QFUNCTIONS_WINCE_H #ifdef Q_OS_WINCE #include #include @@ -457,4 +457,4 @@ generate_inline_return_func5(bsearch, void *, const void *, const void *, size_t #endif //__cplusplus #endif // Q_OS_WINCE -#endif // QFUNCTIONS_WCE_H +#endif // QFUNCTIONS_WINCE_H -- cgit v1.2.3