From f6c2688319d62c4eee0e4366c2bf441dcbf2b707 Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Wed, 13 Oct 2021 11:54:42 +0800 Subject: [PATCH] App: clarify documentation of PropertyContainer::getPropertyNamedList() --- src/App/PropertyContainer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/PropertyContainer.h b/src/App/PropertyContainer.h index 20dec41614..92458b8d5a 100644 --- a/src/App/PropertyContainer.h +++ b/src/App/PropertyContainer.h @@ -169,7 +169,7 @@ public: virtual void getPropertyMap(std::map &Map) const; /// get all properties of the class (including properties of the parent) virtual void getPropertyList(std::vector &List) const; - /// get all properties with their names + /// get all properties with their names, may contain duplicates and aliases virtual void getPropertyNamedList(std::vector > &List) const; /// set the Status bit of all properties at once void setPropertyStatus(unsigned char bit,bool value);