Skip to content
Snippets Groups Projects
Commit d03e8b8e authored by Don Gagne's avatar Don Gagne
Browse files

Fix compiler warning bugs

parent 0f3a51fc
No related branches found
No related tags found
No related merge requests found
......@@ -143,7 +143,7 @@ QList<QStringList> FlightModesComponent::summaryItems(void) const
// Switch is not mapped
if (i == 0) {
// Mode switch is required
Q_ASSERT(switchList[0].param == "RC_MAP_MODE_SW");
Q_ASSERT(strcmp(switchList[0].param, "RC_MAP_MODE_SW") == 0);
row << "Setup required";
} else {
row << "None";
......
......@@ -118,7 +118,9 @@ void SetupView::_clearComponentButtons(void)
QLayoutItem* item;
while ((item = _ui->componentButtonLayout->itemAt(0))) {
VehicleComponentButton* componentButton = dynamic_cast<VehicleComponentButton*>(item->widget());
// Make sure this is really a VehicleComponentButton. If it isn't the UI has changed but the code hasn't.
Q_ASSERT(componentButton);
Q_UNUSED(componentButton);
_ui->componentButtonLayout->removeWidget(item->widget());
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment