diff options
author | Daniel Boles <dboles@src.gnome.org> | 2019-06-11 23:23:36 +0100 |
---|---|---|
committer | Daniel Boles <dboles@src.gnome.org> | 2019-06-11 23:23:36 +0100 |
commit | 49707a268ce93c6bdb0ca731f9b007ab5fe63cdd (patch) | |
tree | 7cce164d48d2a1c2f1cbd0c1bcd4c062624f627f | |
parent | 682a91f81df7cb807cd05a3bc45e9f19584eaac5 (diff) | |
download | glibmm-49707a268ce93c6bdb0ca731f9b007ab5fe63cdd.tar.gz |
Property: Clarify “manipulate” → read and/or write
-rw-r--r-- | glib/glibmm/property.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/glib/glibmm/property.h b/glib/glibmm/property.h index 0b7835b3..305914c7 100644 --- a/glib/glibmm/property.h +++ b/glib/glibmm/property.h @@ -224,7 +224,7 @@ public: */ inline operator PropertyType() const; - /** Returns a proxy object that can be used to manipulate this property. + /** Returns a proxy object that can be used to read or write this property. */ inline Glib::PropertyProxy<T> get_proxy(); }; @@ -271,7 +271,7 @@ public: */ inline operator PropertyType() const; - /** Returns a proxy object that can be used to manipulate this property. + /** Returns a proxy object that can be used to read this property. */ inline Glib::PropertyProxy_ReadOnly<T> get_proxy(); }; @@ -320,7 +320,7 @@ public: */ inline Property_WriteOnly<T>& operator=(const PropertyType& data); - /** Returns a proxy object that can be used to manipulate this property. + /** Returns a proxy object that can be used to write this property. */ inline Glib::PropertyProxy_WriteOnly<T> get_proxy(); }; |