summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2011-04-05 22:13:11 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2011-04-05 22:13:11 (GMT)
commitdc7385b41bf81e6c12dbd3c33c2bea577e067970 (patch)
tree21524a53c3350f64805f55fa13b0d5a302c209d7 /src
parentc82d7010aa6c9cfa993e771f9953b70ae1fdb6a9 (diff)
parent35d9a12529a15d52432c858190ea520971402aaa (diff)
downloadQt-dc7385b41bf81e6c12dbd3c33c2bea577e067970.zip
Qt-dc7385b41bf81e6c12dbd3c33c2bea577e067970.tar.gz
Qt-dc7385b41bf81e6c12dbd3c33c2bea577e067970.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: Fixed license headers for examples in 4.7 Removing extra comma in `enum' declaration. win32-g++: Correct the order of linked Windows libraries Remove SIGBUS emission from QNetworkSession destruction.
Diffstat (limited to 'src')
-rw-r--r--src/declarative/qml/qdeclarativetypeloader_p.h2
-rw-r--r--src/network/bearer/qnetworksession.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qdeclarativetypeloader_p.h b/src/declarative/qml/qdeclarativetypeloader_p.h
index 6938892..7f487a0 100644
--- a/src/declarative/qml/qdeclarativetypeloader_p.h
+++ b/src/declarative/qml/qdeclarativetypeloader_p.h
@@ -79,7 +79,7 @@ public:
Loading, // Prior to data being received and dataReceived() being called
WaitingForDependencies, // While there are outstanding addDependency()s
Complete, // Finished
- Error, // Error
+ Error // Error
};
enum Type {
diff --git a/src/network/bearer/qnetworksession.cpp b/src/network/bearer/qnetworksession.cpp
index 9503553..2613bf8 100644
--- a/src/network/bearer/qnetworksession.cpp
+++ b/src/network/bearer/qnetworksession.cpp
@@ -260,7 +260,7 @@ QNetworkSession::QNetworkSession(const QNetworkConfiguration& connectionConfig,
*/
QNetworkSession::~QNetworkSession()
{
- delete d;
+ d->deleteLater();
}
/*!