Skip to content

Commit 7a52083

Browse files
committed
fix: resolve -Wmissing-field-initializers warnings
1 parent 184b463 commit 7a52083

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/qt/networkstyle.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ static const struct {
2424
const std::string titleAddText;
2525
} network_styles[] = {
2626
{"main", QAPP_APP_NAME_DEFAULT, 0, 0, ""},
27-
{"test", QAPP_APP_NAME_TESTNET, 190, 20},
27+
{"test", QAPP_APP_NAME_TESTNET, 190, 20, ""},
2828
{"devnet", QAPP_APP_NAME_DEVNET, 190, 20, "[devnet: %s]"},
29-
{"regtest", QAPP_APP_NAME_REGTEST, 160, 30}
29+
{"regtest", QAPP_APP_NAME_REGTEST, 160, 30, ""}
3030
};
3131

3232
void NetworkStyle::rotateColor(QColor& col, const int iconColorHueShift, const int iconColorSaturationReduction)

0 commit comments

Comments
 (0)