From 3dcf6dfceee58360501396390d78c006351aef47 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 2 Aug 2017 12:57:55 +0200 Subject: remove unnecessary use of 'this->' Change-Id: I5c115389af7d24c18ddaf5fbec8c00f35017a5b4 Reviewed-on: https://gerrit.libreoffice.org/40671 Tested-by: Jenkins Reviewed-by: Noel Grandin --- comphelper/source/xml/attributelist.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'comphelper/source/xml') diff --git a/comphelper/source/xml/attributelist.cxx b/comphelper/source/xml/attributelist.cxx index 44b674b901c9..cf02d5c9bbf7 100644 --- a/comphelper/source/xml/attributelist.cxx +++ b/comphelper/source/xml/attributelist.cxx @@ -32,9 +32,9 @@ struct TagAttribute_Impl TagAttribute_Impl( const OUString &aName, const OUString &aType, const OUString &aValue ) { - this->sName = aName; - this->sType = aType; - this->sValue = aValue; + sName = aName; + sType = aType; + sValue = aValue; } OUString sName; -- cgit