1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-03-15 07:29:15 +01:00

LP-257 fix for unused param warning

This commit is contained in:
Heikko 2016-03-14 01:04:48 +02:00
parent feee98b305
commit c5dfedbee3

View File

@ -280,10 +280,14 @@ void PfdQmlContext::loadConfiguration(PfdQmlGadgetConfiguration *config)
void PfdQmlContext::saveState(QSettings *settings)
{}
{
Q_UNUSED(settings);
}
void PfdQmlContext::restoreState(QSettings *settings)
{}
{
Q_UNUSED(settings);
}
void PfdQmlContext::apply(QQmlContext *context)
{