diff options
author | David Boddie <david.boddie@nokia.com> | 2010-10-29 12:11:46 (GMT) |
---|---|---|
committer | David Boddie <david.boddie@nokia.com> | 2010-10-29 12:11:46 (GMT) |
commit | d5a44f3489b48027db3f0955190446e0324d6bf5 (patch) | |
tree | e17191b44b9e330cb78027d192c276cac7474096 | |
parent | 9680a442876867ab779023e59e1092268eea74e4 (diff) | |
parent | 96beb59dc7fb303debbbf06beb192158ab3476c2 (diff) | |
download | Qt-d5a44f3489b48027db3f0955190446e0324d6bf5.zip Qt-d5a44f3489b48027db3f0955190446e0324d6bf5.tar.gz Qt-d5a44f3489b48027db3f0955190446e0324d6bf5.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-doc-team into 4.7
-rw-r--r-- | src/declarative/debugger/qdeclarativedebugclient.cpp | 2 | ||||
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativeloader.cpp | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/declarative/debugger/qdeclarativedebugclient.cpp b/src/declarative/debugger/qdeclarativedebugclient.cpp index 977e58e..f5c5751 100644 --- a/src/declarative/debugger/qdeclarativedebugclient.cpp +++ b/src/declarative/debugger/qdeclarativedebugclient.cpp @@ -93,7 +93,7 @@ QDeclarativeDebugConnectionPrivate::QDeclarativeDebugConnectionPrivate(QDeclarat void QDeclarativeDebugConnectionPrivate::advertisePlugins() { - if (!q->isConnected() || !gotHello) + if (!q->isConnected()) return; QPacket pack; diff --git a/src/declarative/graphicsitems/qdeclarativeloader.cpp b/src/declarative/graphicsitems/qdeclarativeloader.cpp index 5647b14..7777567 100644 --- a/src/declarative/graphicsitems/qdeclarativeloader.cpp +++ b/src/declarative/graphicsitems/qdeclarativeloader.cpp @@ -216,7 +216,8 @@ QDeclarativeLoader::~QDeclarativeLoader() cannot load non-visual components. To unload the currently loaded item, set this property to an empty string, - or set \l sourceComponent to \c undefined. + or set \l sourceComponent to \c undefined. Setting \c source to a + new URL will also cause the item created by the previous URL to be unloaded. \sa sourceComponent, status, progress */ |