summaryrefslogtreecommitdiff
path: root/glib/src/regex.hg
diff options
context:
space:
mode:
Diffstat (limited to 'glib/src/regex.hg')
-rw-r--r--glib/src/regex.hg6
1 files changed, 3 insertions, 3 deletions
diff --git a/glib/src/regex.hg b/glib/src/regex.hg
index b6ae1f12..818dada0 100644
--- a/glib/src/regex.hg
+++ b/glib/src/regex.hg
@@ -223,10 +223,10 @@ public:
/** C object constructor.
* @param castitem The C object.
- * @param take_ownership Whether to destroy the C object with the wrapper or
+ * @param take_the_ownership Whether to destroy the C object with the wrapper or
* not.
*/
- explicit MatchInfo(GMatchInfo* castitem, bool take_ownership = true);
+ explicit MatchInfo(GMatchInfo* castitem, bool take_the_ownership = true); //TODO: Rename to take_ownership when we can rename the member variable.
/// Destructor.
virtual ~MatchInfo();
@@ -273,7 +273,7 @@ public:
protected:
GMatchInfo* gobject_; // The C object.
- bool take_ownership; // Bool signaling ownership.
+ bool take_ownership; // Bool signaling ownership. //TODO: Give this a _ suffix when we can break API.
protected:
// So that Glib::Regex::match() can set the C object.