blob: ef690c6330a2eca5322c40efc5674d6ea94c503a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- inti/glib/property.h.orig Sat Sep 18 21:03:00 2004
+++ inti/glib/property.h Sat Sep 18 21:04:01 2004
@@ -187,12 +187,12 @@
void get(DataType& data) const
{
- property()->get(object(), data);
+ this->property()->get(this->object(), data);
}
void set(const DataType& data) const
{
- property()->set(object(), data);
+ this->property()->set(this->object(), data);
}
};
|