diff options
author | Jason Barron <jbarron@trolltech.com> | 2009-09-23 17:08:16 (GMT) |
---|---|---|
committer | Jason Barron <jbarron@trolltech.com> | 2009-09-23 17:14:47 (GMT) |
commit | 0f462990247d71e598346a8f96faf6d04cd4515e (patch) | |
tree | c3abce88f5a2534fe5a1ae4a1aa7e2672dc63a3d /src/corelib | |
parent | 454bedce14728e4f0575aadea6c454717c95d3fe (diff) | |
download | Qt-0f462990247d71e598346a8f96faf6d04cd4515e.zip Qt-0f462990247d71e598346a8f96faf6d04cd4515e.tar.gz Qt-0f462990247d71e598346a8f96faf6d04cd4515e.tar.bz2 |
Compile fix for platforms prior to Symbian^3.
The advanced pointer events are only available on Symbian^3 and higher
so we need to make sure these are protected by an #ifdef. We might have
to re-factor this later into a plugin in order to get this running on
older versions.
Reviewed-by: axis
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/global/qglobal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/global/qglobal.h b/src/corelib/global/qglobal.h index e722268..7fe67ec 100644 --- a/src/corelib/global/qglobal.h +++ b/src/corelib/global/qglobal.h @@ -2391,6 +2391,7 @@ QT3_SUPPORT Q_CORE_EXPORT const char *qInstallPathSysconf(); #define Q_SYMBIAN_HAS_EXTENDED_BITMAP_TYPE //enabling new graphics resources #define QT_SYMBIAN_SUPPORTS_SGIMAGE +#define QT_SYMBIAN_SUPPORTS_ADVANCED_POINTER #endif |