summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qcoreapplication.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/kernel/qcoreapplication.cpp')
-rw-r--r--src/corelib/kernel/qcoreapplication.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcoreapplication.cpp
index 05f26cc87f..2b58d25380 100644
--- a/src/corelib/kernel/qcoreapplication.cpp
+++ b/src/corelib/kernel/qcoreapplication.cpp
@@ -673,27 +673,6 @@ void QCoreApplication::init()
qt_core_eval_init(d->application_type);
#endif
-#if defined(Q_OS_SYMBIAN) \
- && defined(Q_CC_NOKIAX86) \
- && defined(QT_DEBUG)
- /**
- * Prevent the executable from being locked in the Symbian emulator. The
- * code dramatically simplifies debugging on Symbian, but beyond that has
- * no impact.
- *
- * Force the ZLazyUnloadTimer to fire and therefore unload code segments
- * immediately. The code affects Symbian's file server and on the other
- * hand needs only to be run once in each emulator run.
- */
- {
- RLoader loader;
- CleanupClosePushL(loader);
- User::LeaveIfError(loader.Connect());
- User::LeaveIfError(loader.CancelLazyDllUnload());
- CleanupStack::PopAndDestroy(&loader);
- }
-#endif
-
d->processCommandLineArguments();
qt_startup_hook();