diff options
author | Ulf Hermann <[email protected]> | 2014-05-06 15:44:34 +0200 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2014-05-08 12:35:20 +0200 |
commit | 0ef1b78724773d50cfb9cb5cc1ccda27b6c47e14 (patch) | |
tree | e50bca74dae756220c06e37776d615a83f827d62 /src/plugins/qmlprofiler/qmlprofilerclientmanager.cpp | |
parent | 031666c67059b698e9ebbf6e9d5520edca57ca31 (diff) |
QmlProfiler: rename logStatus to logState for consistency
Change-Id: Ic9a19028fc4bde03619296a90f8251e2d6ad1240
Reviewed-by: Kai Koehne <[email protected]>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilerclientmanager.cpp')
-rw-r--r-- | src/plugins/qmlprofiler/qmlprofilerclientmanager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerclientmanager.cpp b/src/plugins/qmlprofiler/qmlprofilerclientmanager.cpp index a43bb4d1f98..23b83f49000 100644 --- a/src/plugins/qmlprofiler/qmlprofilerclientmanager.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerclientmanager.cpp @@ -307,7 +307,7 @@ void QmlProfilerClientManager::connectionStateChanged() case QAbstractSocket::ConnectingState: { if (QmlProfilerPlugin::debugOutput) qWarning("QML Profiler: Connecting to debug server ..."); - QmlProfilerTool::logStatus(tr("QML Profiler: Connecting to %1:%2 ...") + QmlProfilerTool::logState(tr("QML Profiler: Connecting to %1:%2 ...") .arg(d->tcpHost, QString::number(d->tcpPort))); break; } @@ -317,7 +317,7 @@ void QmlProfilerClientManager::connectionStateChanged() qWarning("QML Profiler: connected and running"); // notify the client recording status clientRecordingChanged(); - QmlProfilerTool::logStatus(tr("QML Profiler: connected and running")); + QmlProfilerTool::logState(tr("QML Profiler: connected and running")); break; } case QAbstractSocket::ClosingState: @@ -344,9 +344,9 @@ void QmlProfilerClientManager::retryMessageBoxFinished(int result) } default: { if (d->connection) - QmlProfilerTool::logStatus(QLatin1String("QML Profiler: Failed to connect! ") + d->connection->errorString()); + QmlProfilerTool::logState(QLatin1String("QML Profiler: Failed to connect! ") + d->connection->errorString()); else - QmlProfilerTool::logStatus(QLatin1String("QML Profiler: Failed to connect!")); + QmlProfilerTool::logState(QLatin1String("QML Profiler: Failed to connect!")); emit connectionFailed(); break; |