diff options
author | Ari Lehtola <ext-ari.lehtola@nokia.com> | 2012-02-13 12:52:41 (GMT) |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-02-14 00:40:39 (GMT) |
commit | 2d17086e3790953bb5a65e32c5e7ca5306ff67ea (patch) | |
tree | e56ad5d98713b48981ded7c58c9d1bf8d0022e30 /src | |
parent | 385ee6704d1465c7cc02f518da828231cd8e4dfe (diff) | |
download | Qt-2d17086e3790953bb5a65e32c5e7ca5306ff67ea.zip Qt-2d17086e3790953bb5a65e32c5e7ca5306ff67ea.tar.gz Qt-2d17086e3790953bb5a65e32c5e7ca5306ff67ea.tar.bz2 |
Build break fix
Public SDK breaks because of missing definition of
GfxTransEffect in commit
Ia8d0544ec30741605efd6f7db035bcea2f36e67a
Symbian specific flag added
Change-Id: I972bf207d7854be1bc77bba6ae4ef8155279b1b3
Reviewed-by: Pasi Pentikäinen <ext-pasi.a.pentikainen@nokia.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/kernel/qapplication_s60.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/kernel/qapplication_s60.cpp b/src/gui/kernel/qapplication_s60.cpp index e22b8c9..5e5df84 100644 --- a/src/gui/kernel/qapplication_s60.cpp +++ b/src/gui/kernel/qapplication_s60.cpp @@ -1946,13 +1946,14 @@ void qt_init(QApplicationPrivate * /* priv */, int) TSecureId securId = me.SecureId(); S60->uid = securId.operator TUid(); +#ifdef QT_SYMBIAN_HAVE_AKNTRANSEFFECT_H // Notify uiaccelerator, that we are qt application. This info is used for // decision making how startup effects are shown. GfxTransEffect::BeginFullScreen(AknTransEffect::ENone, TRect(0, 0, 0, 0), AknTransEffect::EParameterAvkonInternal, AknTransEffect::GfxTransParam(S60->uid, KQtAppExitFlag)); - +#endif // enable focus events - used to re-enable mouse after focus changed between mouse and non mouse app, // and for dimming behind modal windows S60->windowGroup().EnableFocusChangeEvents(); |