summaryrefslogtreecommitdiff
path: root/include/canvas/propertysethelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/canvas/propertysethelper.hxx')
-rw-r--r--include/canvas/propertysethelper.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/canvas/propertysethelper.hxx b/include/canvas/propertysethelper.hxx
index 472bb1d922ae..95126d6de615 100644
--- a/include/canvas/propertysethelper.hxx
+++ b/include/canvas/propertysethelper.hxx
@@ -68,27 +68,27 @@ namespace canvas
const SetterType& setter)
{
MapType::MapEntry aEntry={name, {getter, setter}};
- this->push_back(aEntry);
+ push_back(aEntry);
}
MakeMap(const char* name,
const GetterType& getter)
{
MapType::MapEntry aEntry={name, {getter, SetterType()}};
- this->push_back(aEntry);
+ push_back(aEntry);
}
MakeMap& operator()(const char* name,
const GetterType& getter,
const SetterType& setter)
{
MapType::MapEntry aEntry={name, {getter, setter}};
- this->push_back(aEntry);
+ push_back(aEntry);
return *this;
}
MakeMap& operator()(const char* name,
const GetterType& getter)
{
MapType::MapEntry aEntry={name, {getter, SetterType()}};
- this->push_back(aEntry);
+ push_back(aEntry);
return *this;
}
};