diff options
author | Robert Griebl <rgriebl@trolltech.com> | 2009-07-15 16:34:32 (GMT) |
---|---|---|
committer | Robert Griebl <rgriebl@trolltech.com> | 2009-07-15 16:35:19 (GMT) |
commit | 4a2471196122a095481f1e0cc6b7b9b2d3027592 (patch) | |
tree | 5bb92162f0860baa1c4b3d121688989a2d216913 | |
parent | e70d732b6a038586a746c06bfa7e24f2a3e4547f (diff) | |
download | Qt-4a2471196122a095481f1e0cc6b7b9b2d3027592.zip Qt-4a2471196122a095481f1e0cc6b7b9b2d3027592.tar.gz Qt-4a2471196122a095481f1e0cc6b7b9b2d3027592.tar.bz2 |
Fix HPUX compilation
Reviewed-by: TrustMe
-rw-r--r-- | src/corelib/global/qglobal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/global/qglobal.h b/src/corelib/global/qglobal.h index d6c708c..0ef48fa 100644 --- a/src/corelib/global/qglobal.h +++ b/src/corelib/global/qglobal.h @@ -705,7 +705,7 @@ namespace QT_NAMESPACE {} # define Q_DECL_ALIGNED(n) __attribute__((aligned(n))) # endif # if __HP_aCC-0 >= 062000 -# define Q_DECL_EXPORT __attribute__((visibility("default")) +# define Q_DECL_EXPORT __attribute__((visibility("default"))) # define Q_DECL_IMPORT Q_DECL_EXPORT # endif # else |