summaryrefslogtreecommitdiff
path: root/src/plugins/qmlprofiler/qmlprofilertool.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@theqtcompany.com>2016-04-05 14:11:47 +0200
committerEike Ziller <eike.ziller@theqtcompany.com>2016-04-05 14:11:47 +0200
commit1ae483fc833162d6169d4bdbb29846841de3fcbc (patch)
treeffdef4e583f1a9e27edc740bbb6b0248d959f825 /src/plugins/qmlprofiler/qmlprofilertool.cpp
parentc8c6c8ec50f3d9f18a55c26350a4e3f80117fd88 (diff)
parent1ec4bbb0297b23331389eac7a229b4312867ca53 (diff)
downloadqt-creator-1ae483fc833162d6169d4bdbb29846841de3fcbc.tar.gz
Merge remote-tracking branch 'origin/4.0'
Conflicts: src/libs/utils/tcpportsgatherer.h Change-Id: I495f3e05789f09efb8b1e84827893423a5b5b60c
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilertool.cpp')
-rw-r--r--src/plugins/qmlprofiler/qmlprofilertool.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilertool.cpp b/src/plugins/qmlprofiler/qmlprofilertool.cpp
index 30e64558ab..fd69d95de4 100644
--- a/src/plugins/qmlprofiler/qmlprofilertool.cpp
+++ b/src/plugins/qmlprofiler/qmlprofilertool.cpp
@@ -295,10 +295,10 @@ void QmlProfilerTool::updateRunActions()
{
if (d->m_toolBusy) {
d->m_startAction->setEnabled(false);
- d->m_startAction->setToolTip(tr("A Qml Profiler analysis is still in progress."));
+ d->m_startAction->setToolTip(tr("A QML Profiler analysis is still in progress."));
d->m_stopAction->setEnabled(true);
} else {
- QString whyNot = tr("Start Qml Profiler analysis.");
+ QString whyNot = tr("Start QML Profiler analysis.");
bool canRun = ProjectExplorerPlugin::canRunStartupProject
(ProjectExplorer::Constants::QML_PROFILER_RUN_MODE, &whyNot);
d->m_startAction->setToolTip(whyNot);
@@ -429,7 +429,7 @@ void QmlProfilerTool::recordingButtonChanged(bool recording)
void QmlProfilerTool::setRecording(bool recording)
{
// update display
- d->m_recordButton->setToolTip( recording ? tr("Disable profiling") : tr("Enable profiling"));
+ d->m_recordButton->setToolTip( recording ? tr("Disable Profiling") : tr("Enable Profiling"));
d->m_recordButton->setIcon(QIcon(recording ? QLatin1String(":/qmlprofiler/recordOn.png") :
QLatin1String(":/qmlprofiler/recordOff.png")));