From d18308cf3b25ee30815bcaae73d49b5f5b8e734e Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Thu, 10 Jul 2014 14:46:31 +0200 Subject: fdo#79358: ODF export: fix index boolean property export Due to inverted conditional, only the default values were exported, not the non-default ones... (regression from 8a81f542a6ca566661305c53899b7e422cbaa432) Change-Id: I0b1fc828230695709db49e1643801842d947403c --- xmloff/source/text/XMLSectionExport.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xmloff') diff --git a/xmloff/source/text/XMLSectionExport.cxx b/xmloff/source/text/XMLSectionExport.cxx index adff8dd46d5c..fb5ee6f9003d 100644 --- a/xmloff/source/text/XMLSectionExport.cxx +++ b/xmloff/source/text/XMLSectionExport.cxx @@ -1608,7 +1608,7 @@ void XMLSectionExport::ExportBoolean( // value = value ^ bInvert // omit if value == default - if ( (bTmp != bInvert) == bDefault ) + if ( (bTmp != bInvert) != bDefault ) { // export non-default value (since default is omitted) GetExport().AddAttribute(XML_NAMESPACE_TEXT, -- cgit