mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-21 19:55:20 -05:00
Cleaner warning sidestep
This commit is contained in:
parent
e7ace39e44
commit
a27668428b
@ -42,8 +42,8 @@ void ColorHighlighting::set_items (DecodeHighlightingModel const& highlighting_m
|
||||
int index {0};
|
||||
for (auto const& item : highlighting_model.items ())
|
||||
{
|
||||
QLabel * example {nullptr};
|
||||
QLabel * label {nullptr};
|
||||
QLabel * example;
|
||||
QLabel * label;
|
||||
switch (index++)
|
||||
{
|
||||
case 0:
|
||||
@ -110,8 +110,9 @@ void ColorHighlighting::set_items (DecodeHighlightingModel const& highlighting_m
|
||||
example = ui->example16_label;
|
||||
label = ui->p16_label;
|
||||
break;
|
||||
default:
|
||||
continue;
|
||||
}
|
||||
if (!example || !label) continue;
|
||||
auto palette = example->parentWidget ()->palette ();
|
||||
if (Qt::NoBrush != item.background_.style ())
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user