preferencesdialog.cpp: silence a switch warning

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
Lubomir I. Ivanov 2015-11-07 23:17:24 +02:00 committed by Dirk Hohndel
parent 80a67b7a27
commit 809f507537

View file

@ -84,6 +84,7 @@ void PreferencesDialog::buttonClicked(QAbstractButton* btn)
case QDialogButtonBox::AcceptRole : applyRequested(true); return;
case QDialogButtonBox::RejectRole : cancelRequested(); return;
case QDialogButtonBox::ResetRole : defaultsRequested(); return;
default: return;
}
}