summaryrefslogtreecommitdiff
path: root/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2013-01-25 20:40:36 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-01-26 00:36:00 +0100
commit19550797aa16ee60fc19fdaf90832b4895612226 (patch)
treea64ff6780e4d0162173065e7bfcebe6e81b57ff1 /tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp
parentaaddb67d074dcf1965e6c07a7232dd688deac416 (diff)
downloadqtscript-19550797aa16ee60fc19fdaf90832b4895612226.tar.gz
Doc: Fix module name format
Follow the conventions at http://qt-project.org/wiki/Spelling_Module_Names_in_Qt_Documentation QtScript -> Qt Script QtScriptTools -> Qt Script Tools Change-Id: Icf6b2ea3829247475f8902334b615f9a9206cc51 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp')
-rw-r--r--tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp b/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp
index 21f5b33..78c0151 100644
--- a/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp
+++ b/tests/auto/qscriptextqobject/tst_qscriptextqobject.cpp
@@ -2343,7 +2343,7 @@ void tst_QScriptExtQObject::cppConnectAndDisconnect2()
QVERIFY(qScriptConnect(m_myObject, SIGNAL(mySignal()), QScriptValue(), fun));
QCOMPARE(m_myObject->connectNotifySignals().size(), 2);
QVERIFY(m_myObject->hasConnectNotifySignal(QMetaMethod::fromSignal(&MyQObject::mySignal)));
- // We get a destroyed() connection as well, used internally by QtScript
+ // We get a destroyed() connection as well, used internally by Qt Script
QVERIFY(m_myObject->hasConnectNotifySignal(QMetaMethod::fromSignal(&QObject::destroyed)));
m_myObject->clearDisconnectNotifySignals();