summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAri Lehtola <ext-ari.lehtola@nokia.com>2012-02-13 14:52:41 +0200
committerPasi Pentikäinen <ext-pasi.a.pentikainen@nokia.com>2012-02-23 11:14:34 +0100
commit21b60437649498c3097ab7dfa4044b15f240899b (patch)
treea46c38d2d7fb05f9bc42921e4dc076f0a18e5051
parent0710c962498ae46cb5042c8c7cc4776f4e31a5f6 (diff)
downloadqt4-tools-21b60437649498c3097ab7dfa4044b15f240899b.tar.gz
Build break fix
Public SDK breaks because of missing definition of GfxTransEffect in commit Ia8d0544ec30741605efd6f7db035bcea2f36e67a Symbian specific flag added Task-Number: ou1cimx1#979239 Change-Id: I972bf207d7854be1bc77bba6ae4ef8155279b1b3 Reviewed-by: Pasi Pentikäinen <ext-pasi.a.pentikainen@nokia.com> (cherry picked from commit 2d17086e3790953bb5a65e32c5e7ca5306ff67ea)
-rw-r--r--src/gui/kernel/qapplication_s60.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/kernel/qapplication_s60.cpp b/src/gui/kernel/qapplication_s60.cpp
index 00c83ba597..ca000bcd56 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();