1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

Merged in timmmt/librepilot/LP-257_fix_for_unused_param (pull request #196)

LP-257 fix for unused param warning
This commit is contained in:
Philippe Renon 2016-03-14 20:51:30 +01:00
commit 9e6989d6a1

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)
{