1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-16 04:38:57 -04:00

Windows: MSVC2017: fixed some attribute unused cases

This commit is contained in:
f4exb
2018-11-12 15:48:41 +01:00
parent 127178f44c
commit cdacf51bfb
2 changed files with 2 additions and 9 deletions
+1 -4
View File
@@ -363,12 +363,9 @@ void ArgInfoGUI::on_argEdit_editingFinished()
emit valueChanged();
}
#ifdef _MSC_VER
void ArgInfoGUI::on_argCombo_currentIndexChanged(int index)
#else
void ArgInfoGUI::on_argCombo_currentIndexChanged(int index __attribute__((unused)))
#endif
{
(void) index;
QVariant v = ui->argCombo->currentData();
bool ok = false;