summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2009-08-20 09:16:58 (GMT)
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2009-08-20 09:16:58 (GMT)
commit7a9a09fea2926e003e15d1220ca7de089a108a8c (patch)
tree59c2cec2381b104d21b1801d643a71763a0ecf46 /mkspecs
parentca1c3a91d9a8e276585b3970582fb338302ba4a5 (diff)
downloadQt-7a9a09fea2926e003e15d1220ca7de089a108a8c.zip
Qt-7a9a09fea2926e003e15d1220ca7de089a108a8c.tar.gz
Qt-7a9a09fea2926e003e15d1220ca7de089a108a8c.tar.bz2
Changed a define to comply to Qt naming conventions.
Prepended QT_ to a define we use internally in fixed_stdlib.h Reviewed-by: Janne Anttila
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/common/symbian/fixed_stdlib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/mkspecs/common/symbian/fixed_stdlib.h b/mkspecs/common/symbian/fixed_stdlib.h
index a6dcbc7..f8dc138 100644
--- a/mkspecs/common/symbian/fixed_stdlib.h
+++ b/mkspecs/common/symbian/fixed_stdlib.h
@@ -49,16 +49,16 @@
// If _WCHAR_T_DECLARED is defined, undef it and store information that we
// need to revert the _WCHAR_T_DECLARED define after include
# ifdef _WCHAR_T_DECLARED
-# define REVERT_WCHAR_T_DECLARED
+# define QT_REVERT_WCHAR_T_DECLARED
# undef _WCHAR_T_DECLARED
# endif //_WCHAR_T_DECLARED
#include <stdlib.h>
// Revert _WCHAR_T_DECLARED if necessary
-# ifdef REVERT_WCHAR_T_DECLARED
+# ifdef QT_REVERT_WCHAR_T_DECLARED
# define _WCHAR_T_DECLARED
-# undef REVERT_WCHAR_T_DECLARED
-# endif //REVERT_WCHAR_T_DECLARED
+# undef QT_REVERT_WCHAR_T_DECLARED
+# endif //QT_REVERT_WCHAR_T_DECLARED
#endif