aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qmldebug
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2016-11-04 10:42:39 +0100
committerJarek Kobus <jaroslaw.kobus@qt.io>2016-11-04 09:51:29 +0000
commit05747d7d33154f64470dea0c757f6762044bf894 (patch)
treec57f70eed43a98f99a38af39d51d78bef8a68d7c /src/libs/qmldebug
parentd771ba89211c57abc9f6b94a4047edd43271dd1d (diff)
Don't shout in text messages
Change-Id: Ie8d2c6761c87b358f0bc8691e529ba8144e267a4 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'src/libs/qmldebug')
-rw-r--r--src/libs/qmldebug/qmldebugclient.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/qmldebug/qmldebugclient.cpp b/src/libs/qmldebug/qmldebugclient.cpp
index 10b06b2025..4061464a07 100644
--- a/src/libs/qmldebug/qmldebugclient.cpp
+++ b/src/libs/qmldebug/qmldebugclient.cpp
@@ -83,10 +83,10 @@ static QString socketStateToString(QAbstractSocket::SocketState state)
return QmlDebugConnection::tr("Network connection closing");
case QAbstractSocket::BoundState:
return QmlDebugConnection::tr("Socket state changed to BoundState. "
- "This should not happen!");
+ "This should not happen.");
case QAbstractSocket::ListeningState:
return QmlDebugConnection::tr("Socket state changed to ListeningState. "
- "This should not happen!");
+ "This should not happen.");
default:
return QmlDebugConnection::tr("Unknown state %1").arg(state);
}