forked from qt-creator/qt-creator
Add a space after "Error:" in tooltip
Change-Id: I0ecefcedf49175abee7a71ddce9ce9630b989a17 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
committed by
Tobias Hunger
parent
5e197c8c9d
commit
5e5831bb12
@@ -403,10 +403,10 @@ QString Kit::toHtml()
|
||||
str << "<b>";
|
||||
switch (t.type) {
|
||||
case Task::Error:
|
||||
str << QCoreApplication::translate("ProjectExplorer::Kit", "Error:");
|
||||
str << QCoreApplication::translate("ProjectExplorer::Kit", "Error:") << " ";
|
||||
break;
|
||||
case Task::Warning:
|
||||
str << QCoreApplication::translate("ProjectExplorer::Kit", "Warning:");
|
||||
str << QCoreApplication::translate("ProjectExplorer::Kit", "Warning:") << " ";
|
||||
break;
|
||||
case Task::Unknown:
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user