MS & KB workshop: removed CAvionicsBase.

This commit is contained in:
Mathew Sutcliffe
2015-05-12 21:55:01 +01:00
parent 069f4749f4
commit c136724cd0
14 changed files with 46 additions and 103 deletions

View File

@@ -49,7 +49,7 @@ namespace BlackMisc
case IndexOutputVolume:
return CVariant::from(this->getVolumeOutput());
default:
return CValueObject<CModulator<AVIO>, CAvionicsBase>::propertyByIndex(index);
return CValueObject<CModulator<AVIO>>::propertyByIndex(index);
}
}
@@ -80,7 +80,7 @@ namespace BlackMisc
this->setVolumeOutput(variant.toInt());
break;
default:
CValueObject<CModulator<AVIO>, CAvionicsBase>::setPropertyByIndex(variant, index);
CValueObject<CModulator<AVIO>>::setPropertyByIndex(variant, index);
break;
}
}