forked from qt-creator/qt-creator
Debugger: Strip QLatin1* where possible
Change-Id: Idcab23875b5dc2ecf55e3303f417b995e2252720 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
committed by
Orgad Shaneh
parent
d0d6f99491
commit
147a3c27c4
@@ -124,7 +124,7 @@ void ImageViewer::setInfo(const QString &info)
|
||||
|
||||
void ImageViewer::clicked(const QString &message)
|
||||
{
|
||||
const QString text = m_info + QLatin1Char('\n')
|
||||
const QString text = m_info + '\n'
|
||||
+ (message.isEmpty() ? tr("<Click to display color>") : message);
|
||||
m_infoLabel->setText(text);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user