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

@@ -56,7 +56,7 @@ namespace BlackMisc
case IndexCallsign:
return m_callsign.propertyByIndex(index.copyFrontRemoved());
default:
return CValueObject::propertyByIndex(index);
return CValueObjectStdTuple::propertyByIndex(index);
}
}
@@ -89,7 +89,7 @@ namespace BlackMisc
this->m_modelType = variant.toInt();
break;
default:
CValueObject::setPropertyByIndex(variant, index);
CValueObjectStdTuple::setPropertyByIndex(variant, index);
break;
}
}