summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/xmlrowi.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-04 08:37:36 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-11-04 08:01:56 +0000
commitbe91a4725d851c05ea8a9ca2eb9ef01954aa06ec (patch)
tree0c13e06f0598bd84c958fb6851e69d608de2650d /sc/source/filter/xml/xmlrowi.cxx
parent81824d135987712b57e3c81a26f72ae4fabb4031 (diff)
loplugin:stringconstant
Change-Id: I9d3b60bb9f0d8c09968e2be1035fb8e654ac9c95 Reviewed-on: https://gerrit.libreoffice.org/19769 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc/source/filter/xml/xmlrowi.cxx')
-rw-r--r--sc/source/filter/xml/xmlrowi.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/xml/xmlrowi.cxx b/sc/source/filter/xml/xmlrowi.cxx
index a3b30baf4f72..ae29109c62ef 100644
--- a/sc/source/filter/xml/xmlrowi.cxx
+++ b/sc/source/filter/xml/xmlrowi.cxx
@@ -200,9 +200,9 @@ void ScXMLTableRowContext::EndElement()
bFiltered = true;
}
if (!bVisible)
- xRowProperties->setPropertyValue(OUString(SC_ISVISIBLE), uno::makeAny(bVisible));
+ xRowProperties->setPropertyValue(SC_ISVISIBLE, uno::makeAny(bVisible));
if (bFiltered)
- xRowProperties->setPropertyValue(OUString(SC_ISFILTERED), uno::makeAny(bFiltered));
+ xRowProperties->setPropertyValue(SC_ISFILTERED, uno::makeAny(bFiltered));
}
}
}