summaryrefslogtreecommitdiff
path: root/glib/glibmm/property.h
diff options
context:
space:
mode:
authorDaniel Boles <dboles@src.gnome.org>2019-06-11 23:23:36 +0100
committerDaniel Boles <dboles@src.gnome.org>2019-06-11 23:23:36 +0100
commit49707a268ce93c6bdb0ca731f9b007ab5fe63cdd (patch)
tree7cce164d48d2a1c2f1cbd0c1bcd4c062624f627f /glib/glibmm/property.h
parent682a91f81df7cb807cd05a3bc45e9f19584eaac5 (diff)
downloadglibmm-49707a268ce93c6bdb0ca731f9b007ab5fe63cdd.tar.gz
Property: Clarify “manipulate” → read and/or write
Diffstat (limited to 'glib/glibmm/property.h')
-rw-r--r--glib/glibmm/property.h6
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();
};