shapeexport2.cxx (2f8a4d94) | shapeexport2.cxx (5e6b5d64) |
---|---|
1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 1057 unchanged lines hidden (view full) --- 1066 false, // bDetectQuadraticBeziers: not used in old, but maybe activated now 1067 true)); // bHandleRelativeNextPointCompatible 1068 1069 // write point array 1070 mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_D, aPolygonString); 1071 } 1072 } 1073 | 1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 1057 unchanged lines hidden (view full) --- 1066 false, // bDetectQuadraticBeziers: not used in old, but maybe activated now 1067 true)); // bHandleRelativeNextPointCompatible 1068 1069 // write point array 1070 mrExport.AddAttribute(XML_NAMESPACE_SVG, XML_D, aPolygonString); 1071 } 1072 } 1073 |
1074 // write object, but after attributes are added since the destructor will 1075 // consume all of these added attributes. Also before text is added; this may 1076 // open another SvXMLElementExport scope which needs to be inside this one | 1074 // write object, but after attributes are added since this call will 1075 // consume all of these added attributes and the destructor will close the 1076 // scope. Also before text is added; this may add sub-scopes as needed |
1077 SvXMLElementExport aOBJ( 1078 mrExport, 1079 XML_NAMESPACE_DRAW, 1080 eName, 1081 bCreateNewline, 1082 sal_True); 1083 1084 ImpExportDescription( xShape ); // #i68101# --- 937 unchanged lines hidden --- | 1077 SvXMLElementExport aOBJ( 1078 mrExport, 1079 XML_NAMESPACE_DRAW, 1080 eName, 1081 bCreateNewline, 1082 sal_True); 1083 1084 ImpExportDescription( xShape ); // #i68101# --- 937 unchanged lines hidden --- |