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
@@ -403,7 +403,7 @@ BreakpointDialog::BreakpointDialog(unsigned int enabledParts, QWidget *parent)
|
||||
m_labelType->setBuddy(m_comboBoxType);
|
||||
|
||||
m_pathChooserFileName = new PathChooser(groupBoxBasic);
|
||||
m_pathChooserFileName->setHistoryCompleter(QLatin1String("Debugger.Breakpoint.File.History"));
|
||||
m_pathChooserFileName->setHistoryCompleter("Debugger.Breakpoint.File.History");
|
||||
m_pathChooserFileName->setExpectedKind(PathChooser::File);
|
||||
m_labelFileName = new QLabel(tr("&File name:"), groupBoxBasic);
|
||||
m_labelFileName->setBuddy(m_pathChooserFileName);
|
||||
@@ -1028,7 +1028,7 @@ int BreakHandler::threadSpecFromDisplay(const QString &str)
|
||||
return ok ? result : -1;
|
||||
}
|
||||
|
||||
const QString empty(QLatin1Char('-'));
|
||||
const QString empty("-");
|
||||
|
||||
QVariant BreakpointItem::data(int column, int role) const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user