+ fix clang warning: -Woverloaded-virtual

This commit is contained in:
wmayer
2015-10-02 20:42:16 +02:00
parent 17b076a0b3
commit 2acb38daa7
12 changed files with 36 additions and 36 deletions

View File

@@ -83,12 +83,12 @@ void Property::setContainer(PropertyContainer *Father)
father = Father;
}
void Property::setValue(const ObjectIdentifier &path, const boost::any &value)
void Property::setPathValue(const ObjectIdentifier &path, const boost::any &value)
{
path.setValue(value);
}
const boost::any Property::getValue(const ObjectIdentifier &path) const
const boost::any Property::getPathValue(const ObjectIdentifier &path) const
{
return path.getValue();
}