refs #356 Update base class name in derived class method implementations.

This commit is contained in:
Mathew Sutcliffe
2015-03-16 17:04:16 +00:00
parent 31c33b4b8d
commit 2a3e0acf23
21 changed files with 42 additions and 42 deletions

View File

@@ -68,7 +68,7 @@ namespace BlackMisc
case IndexTaxi:
return CVariant::from(m_taxiOn);
default:
return CValueObject::propertyByIndex(index);
return CValueObjectStdTuple::propertyByIndex(index);
}
}
@@ -102,7 +102,7 @@ namespace BlackMisc
this->m_taxiOn = variant.toBool();
break;
default:
CValueObject::setPropertyByIndex(variant, index);
CValueObjectStdTuple::setPropertyByIndex(variant, index);
break;
}
}