From 8dde04aa228df31795b08a3fe86fac056dc3ed26 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 23 Jun 2014 13:47:08 +0200 Subject: [PATCH] QmlJSConsole: Fix tool tip strings Change-Id: I21fd9689716856ce203fe698c6c81697128b4d48 Reviewed-by: Kai Koehne --- src/plugins/qmljstools/qmlconsolepane.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/qmljstools/qmlconsolepane.cpp b/src/plugins/qmljstools/qmlconsolepane.cpp index 9c01ebc3457..a79b36ae5fb 100644 --- a/src/plugins/qmljstools/qmlconsolepane.cpp +++ b/src/plugins/qmljstools/qmlconsolepane.cpp @@ -119,7 +119,7 @@ QmlConsolePane::QmlConsolePane(QObject *parent) m_showWarningButtonAction = new Utils::SavedAction(this); m_showWarningButtonAction->setDefaultValue(true); m_showWarningButtonAction->setSettingsKey(QLatin1String(CONSOLE), QLatin1String(SHOW_WARNING)); - m_showWarningButtonAction->setToolTip(tr("Show debug, log, and info messages.")); + m_showWarningButtonAction->setToolTip(tr("Show warning messages.")); m_showWarningButtonAction->setCheckable(true); m_showWarningButtonAction->setIcon(QIcon(QLatin1String(Core::Constants::ICON_WARNING))); connect(m_showWarningButtonAction, SIGNAL(toggled(bool)), m_proxyModel, @@ -132,7 +132,7 @@ QmlConsolePane::QmlConsolePane(QObject *parent) m_showErrorButtonAction = new Utils::SavedAction(this); m_showErrorButtonAction->setDefaultValue(true); m_showErrorButtonAction->setSettingsKey(QLatin1String(CONSOLE), QLatin1String(SHOW_ERROR)); - m_showErrorButtonAction->setToolTip(tr("Show debug, log, and info messages.")); + m_showErrorButtonAction->setToolTip(tr("Show error messages.")); m_showErrorButtonAction->setCheckable(true); m_showErrorButtonAction->setIcon(QIcon(QLatin1String(Core::Constants::ICON_ERROR))); connect(m_showErrorButtonAction, SIGNAL(toggled(bool)), m_proxyModel,