Fix MSVC warnings.
This commit is contained in:
parent
16b67644b0
commit
6d34b6af13
|
@ -788,7 +788,8 @@ Module {
|
||||||
"-wd4458", // declaration of 'X' hides class member
|
"-wd4458", // declaration of 'X' hides class member
|
||||||
"-wd4456", // declaration of 'X' hides previous local declaration
|
"-wd4456", // declaration of 'X' hides previous local declaration
|
||||||
"-wd4459", // declaration of 'X' hides global declaration
|
"-wd4459", // declaration of 'X' hides global declaration
|
||||||
"-wd4457" // declaration of 'X' hides function parameter
|
"-wd4457", // declaration of 'X' hides function parameter
|
||||||
|
"-wd4125" // decimal digit terminates octal escape sequence
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
return debugFlags;
|
return debugFlags;
|
||||||
|
|
|
@ -608,7 +608,7 @@ void DialogMove::ShowSourceDetails(int row)
|
||||||
{
|
{
|
||||||
ui->labelAlias->setText(tr("Alias:"));
|
ui->labelAlias->setText(tr("Alias:"));
|
||||||
|
|
||||||
auto SetValue = [sourceItem](QComboBox *box, const QString &value, const QString &def)
|
auto SetValue = [](QComboBox *box, const QString &value, const QString &def)
|
||||||
{
|
{
|
||||||
box->blockSignals(true);
|
box->blockSignals(true);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user