diff options
author | Robert Loehning <[email protected]> | 2017-09-13 15:56:47 +0200 |
---|---|---|
committer | Robert Loehning <[email protected]> | 2018-01-24 10:18:28 +0000 |
commit | 9e066c7b17ecc7399a94763003b23e751bab93e5 (patch) | |
tree | d6c5628913600a8d5eb032ce8be22aeff82960d4 /src/libs/modelinglib | |
parent | 1d763d19419ea1da24c47a45398a626ed7a65949 (diff) |
Move HTML out of translated strings
Change-Id: I4664427086619f33e9a882eb3f0a5f2f52e1b42a
Reviewed-by: Jochen Becher <[email protected]>
Reviewed-by: Leena Miettinen <[email protected]>
Reviewed-by: Friedemann Kleint <[email protected]>
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/libs/modelinglib')
-rw-r--r-- | src/libs/modelinglib/qmt/model_widgets_ui/propertiesviewmview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/modelinglib/qmt/model_widgets_ui/propertiesviewmview.cpp b/src/libs/modelinglib/qmt/model_widgets_ui/propertiesviewmview.cpp index f0d18509fed..519f9ca15cb 100644 --- a/src/libs/modelinglib/qmt/model_widgets_ui/propertiesviewmview.cpp +++ b/src/libs/modelinglib/qmt/model_widgets_ui/propertiesviewmview.cpp @@ -1180,7 +1180,7 @@ void PropertiesView::MView::onClassMembersStatusChanged(bool valid) if (valid) m_classMembersStatusLabel->clear(); else - m_classMembersStatusLabel->setText(tr("<font color=red>Invalid syntax.</font>")); + m_classMembersStatusLabel->setText("<font color=red>" + tr("Invalid syntax.") + "</font>"); } void PropertiesView::MView::onParseClassMembers() |