summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2011-03-22 10:19:15 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2011-03-22 14:41:09 (GMT)
commitb56f6ba0662a636e71301ef6dd56c0f8b3737d5b (patch)
treec670f7c565ded85b7b49fafae5b36d2e8c917656 /src/corelib
parent778b480d2cf51abfe9fdd75ce1fbba51e3cae696 (diff)
downloadQt-b56f6ba0662a636e71301ef6dd56c0f8b3737d5b.zip
Qt-b56f6ba0662a636e71301ef6dd56c0f8b3737d5b.tar.gz
Qt-b56f6ba0662a636e71301ef6dd56c0f8b3737d5b.tar.bz2
Fix declaration: it's QT_DECL_ALIGN, not QT_DECL_ALIGNED
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/global/qglobal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/global/qglobal.h b/src/corelib/global/qglobal.h
index 06e19dc..8dd8850 100644
--- a/src/corelib/global/qglobal.h
+++ b/src/corelib/global/qglobal.h
@@ -755,7 +755,7 @@ namespace QT_NAMESPACE {}
# define Q_DECL_IMPORT __declspec(dllimport)
# endif
# if __HP_aCC-0 >= 061200
-# define Q_DECL_ALIGNED(n) __attribute__((aligned(n)))
+# define Q_DECL_ALIGN(n) __attribute__((aligned(n)))
# endif
# if __HP_aCC-0 >= 062000
# define Q_DECL_EXPORT __attribute__((visibility("default")))