App: clarify documentation of PropertyContainer::getPropertyNamedList()

This commit is contained in:
Zheng, Lei
2021-10-13 11:54:42 +08:00
committed by Chris Hennes
parent 4d82c5d319
commit 9941830cfb

View File

@@ -169,7 +169,7 @@ public:
virtual void getPropertyMap(std::map<std::string,Property*> &Map) const;
/// get all properties of the class (including properties of the parent)
virtual void getPropertyList(std::vector<Property*> &List) const;
/// get all properties with their names
/// get all properties with their names, may contain duplicates and aliases
virtual void getPropertyNamedList(std::vector<std::pair<const char*,Property*> > &List) const;
/// set the Status bit of all properties at once
void setPropertyStatus(unsigned char bit,bool value);