Move enums into anonymous namespace

This commit is contained in:
Chocobo1 2020-09-09 16:22:33 +08:00
parent 2fd69a21b0
commit 0bf76723f1
No known key found for this signature in database
GPG key ID: 210D9C873253A68C

View file

@ -49,7 +49,6 @@ namespace
{
return QStringLiteral("<a href=\"%1\">%2</a>").arg(url, linkLabel);
}
}
enum AdvSettingsCols
{
@ -57,6 +56,7 @@ enum AdvSettingsCols
VALUE,
COL_COUNT
};
enum AdvSettingsRows
{
// qBittorrent section
@ -135,6 +135,7 @@ enum AdvSettingsRows
ROW_COUNT
};
}
AdvancedSettings::AdvancedSettings(QWidget *parent)
: QTableWidget(parent)