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

@@ -65,7 +65,7 @@ namespace BlackMisc
case IndexKeyAsStringRepresentation:
return CVariant::from(m_key.getKeyAsStringRepresentation());
default:
return CValueObject::propertyByIndex(index);
return CValueObjectStdTuple::propertyByIndex(index);
}
}
@@ -106,7 +106,7 @@ namespace BlackMisc
this->setObject(variant.value<BlackMisc::Settings::CSettingKeyboardHotkey>());
break;
default:
CValueObject::setPropertyByIndex(variant, index);
CValueObjectStdTuple::setPropertyByIndex(variant, index);
break;
}
}