From 60b36a7968782f44fa9351649f8cdd28ad85f40d Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Fri, 7 Mar 2014 22:15:13 +0100 Subject: fix OOXML validation error, related fdo#42584 Use correct namespace for detectmouseclick Change-Id: I2830ef089ade94e69a49cb8ceba7fe91fa86817f --- oox/source/export/vmlexport.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'oox') diff --git a/oox/source/export/vmlexport.cxx b/oox/source/export/vmlexport.cxx index de62d73c92f6..a1e1dea4697a 100644 --- a/oox/source/export/vmlexport.cxx +++ b/oox/source/export/vmlexport.cxx @@ -578,7 +578,7 @@ void VMLExport::Commit( EscherPropertyContainer& rProps, const Rectangle& rRect } if ( rProps.GetOpt( ESCHER_Prop_fNoFillHitTest, nValue ) ) - impl_AddBool( pAttrList, XML_detectmouseclick, nValue != 0 ); + impl_AddBool( pAttrList, FSNS(XML_o, XML_detectmouseclick), nValue != 0 ); if (rProps.GetOpt(ESCHER_Prop_fillOpacity, nValue)) // Partly undo the transformation at the end of EscherPropertyContainer::CreateFillProperties(): VML opacity is 0..1. -- cgit