1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-18 08:54:15 +01:00

OP-1660 Changes from review

This commit is contained in:
Laurent Lalanne 2014-12-30 14:57:34 +01:00
parent 90e4e9276e
commit 45c96f3378
2 changed files with 1 additions and 2 deletions

View File

@ -1681,7 +1681,7 @@ void ConfigInputWidget::adjustSpecialNeutrals()
bool ConfigInputWidget::shouldObjectBeSaved(UAVObject *object)
{
// ManualControlCommand no need to be saved
return dynamic_cast<ManualControlCommand *>(object) == 0;
return dynamic_cast<ManualControlCommand *>(object) == NULL;
}
void ConfigInputWidget::resetChannelSettings()

View File

@ -66,7 +66,6 @@ public:
goToWizard();
}
void enableControls(bool enable);
bool shouldObjectBeSaved(UAVObject *object);
private: