diff options
author | axis <qt-info@nokia.com> | 2010-07-12 18:24:11 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2010-07-13 13:52:35 (GMT) |
commit | 64f66cbfb924ed1810b120950273c2f58e3a2077 (patch) | |
tree | 1ecdeb58b4217f1b2832ccf4aa27a9e35ced242d | |
parent | fc260f7ce9c139da93e005b2b51ef37c4d23998d (diff) | |
download | Qt-64f66cbfb924ed1810b120950273c2f58e3a2077.zip Qt-64f66cbfb924ed1810b120950273c2f58e3a2077.tar.gz Qt-64f66cbfb924ed1810b120950273c2f58e3a2077.tar.bz2 |
Revert "Adding some error checking for setdefaultif"
This reverts commit 0b56799601690a747c42dfbbefe95f18e837eb3f.
Should not be necessary anymore after 61daa2f41969688.
-rw-r--r-- | src/corelib/kernel/qeventdispatcher_symbian.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/corelib/kernel/qeventdispatcher_symbian.cpp b/src/corelib/kernel/qeventdispatcher_symbian.cpp index 1b0c31b..ea207f0 100644 --- a/src/corelib/kernel/qeventdispatcher_symbian.cpp +++ b/src/corelib/kernel/qeventdispatcher_symbian.cpp @@ -585,9 +585,7 @@ void QSelectThread::updateActivatedNotifiers(QSocketNotifier::Type type, fd_set // on some devices we do get exception // close all exiting sockets // and reset default IAP - if(::setdefaultif(0) != KErrNone) // well we can't do much about it - qWarning("setdefaultif(0) failed"); - + ::setdefaultif(0); toRemove.append(i.key()); TRequestStatus *status = i.value(); QEventDispatcherSymbian::RequestComplete(d->threadData->symbian_thread_handle, status, KErrNone); |