QML debugging: Fix UI text punctuation

Change-Id: Id4d06b8d083f224a58299c134e2feeffedd72e9f
Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
Leena Miettinen
2018-02-05 16:58:48 +01:00
parent e8a8003b16
commit 99223ebfef

View File

@@ -217,7 +217,7 @@ void QmlDebugConnectionManager::destroyConnection()
void QmlDebugConnectionManager::qmlDebugConnectionOpened() void QmlDebugConnectionManager::qmlDebugConnectionOpened()
{ {
logState(tr("Debug connection opened")); logState(tr("Debug connection opened."));
QTC_ASSERT(m_connection, return); QTC_ASSERT(m_connection, return);
QTC_ASSERT(m_connection->isConnected(), return); QTC_ASSERT(m_connection->isConnected(), return);
stopConnectionTimer(); stopConnectionTimer();
@@ -226,7 +226,7 @@ void QmlDebugConnectionManager::qmlDebugConnectionOpened()
void QmlDebugConnectionManager::qmlDebugConnectionClosed() void QmlDebugConnectionManager::qmlDebugConnectionClosed()
{ {
logState(tr("Debug connection closed")); logState(tr("Debug connection closed."));
QTC_ASSERT(m_connection, return); QTC_ASSERT(m_connection, return);
QTC_ASSERT(!m_connection->isConnected(), return); QTC_ASSERT(!m_connection->isConnected(), return);
destroyConnection(); destroyConnection();
@@ -235,7 +235,7 @@ void QmlDebugConnectionManager::qmlDebugConnectionClosed()
void QmlDebugConnectionManager::qmlDebugConnectionFailed() void QmlDebugConnectionManager::qmlDebugConnectionFailed()
{ {
logState(tr("Debug connection failed")); logState(tr("Debug connection failed."));
QTC_ASSERT(m_connection, return); QTC_ASSERT(m_connection, return);
QTC_ASSERT(!m_connection->isConnected(), /**/); QTC_ASSERT(!m_connection->isConnected(), /**/);