forked from qt-creator/qt-creator
QML debugging: Fix UI text punctuation
Change-Id: Id4d06b8d083f224a58299c134e2feeffedd72e9f Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
@@ -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(), /**/);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user