summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-27 14:39:19 +0200
committerNoel Grandin <noel@peralex.com>2014-03-31 12:35:53 +0200
commit55ee8a75c1a5670d547465a10314a85284283ea6 (patch)
treed603626f88a6925aa80ab18d7e2dd55f27b4fd91
parent3daa47e87ad8c51a84750676ca9b9932390dbdcf (diff)
xmloff: sal_Bool->bool
and remove some unused return values Change-Id: I957b4befd2e2574a1d202edee440f65325d5388a
-rw-r--r--include/xmloff/DashStyle.hxx4
-rw-r--r--include/xmloff/GradientStyle.hxx4
-rw-r--r--include/xmloff/HatchStyle.hxx4
-rw-r--r--include/xmloff/ImageStyle.hxx8
-rw-r--r--include/xmloff/MarkerStyle.hxx4
-rw-r--r--xmloff/source/style/DashStyle.cxx8
-rw-r--r--xmloff/source/style/GradientStyle.cxx46
-rw-r--r--xmloff/source/style/HatchStyle.cxx47
-rw-r--r--xmloff/source/style/ImageStyle.cxx50
-rw-r--r--xmloff/source/style/MarkerStyle.cxx16
10 files changed, 84 insertions, 107 deletions
diff --git a/include/xmloff/DashStyle.hxx b/include/xmloff/DashStyle.hxx
index 8d523e265e38..eafe70e16399 100644
--- a/include/xmloff/DashStyle.hxx
+++ b/include/xmloff/DashStyle.hxx
@@ -41,7 +41,7 @@ public:
XMLDashStyleImport( SvXMLImport& rImport );
~XMLDashStyleImport();
- sal_Bool importXML(
+ void importXML(
const ::com::sun::star::uno::Reference<
::com::sun::star::xml::sax::XAttributeList >& xAttrList,
::com::sun::star::uno::Any& rValue,
@@ -57,7 +57,7 @@ public:
XMLDashStyleExport( SvXMLExport& rExport );
~XMLDashStyleExport();
- sal_Bool exportXML( const OUString& rStrName,
+ bool exportXML( const OUString& rStrName,
const ::com::sun::star::uno::Any& rValue );
};
diff --git a/include/xmloff/GradientStyle.hxx b/include/xmloff/GradientStyle.hxx
index c90719cc71f9..ef3eaf87b894 100644
--- a/include/xmloff/GradientStyle.hxx
+++ b/include/xmloff/GradientStyle.hxx
@@ -42,7 +42,7 @@ public:
XMLGradientStyleImport( SvXMLImport& rImport );
~XMLGradientStyleImport();
- sal_Bool importXML(
+ bool importXML(
const ::com::sun::star::uno::Reference<
::com::sun::star::xml::sax::XAttributeList >& xAttrList,
::com::sun::star::uno::Any& rValue,
@@ -58,7 +58,7 @@ public:
XMLGradientStyleExport( SvXMLExport& rExport );
~XMLGradientStyleExport();
- sal_Bool exportXML(
+ bool exportXML(
const OUString& rStrName,
const ::com::sun::star::uno::Any& rValue );
};
diff --git a/include/xmloff/HatchStyle.hxx b/include/xmloff/HatchStyle.hxx
index 6f0f5ca6076c..44721e0fe126 100644
--- a/include/xmloff/HatchStyle.hxx
+++ b/include/xmloff/HatchStyle.hxx
@@ -42,7 +42,7 @@ public:
XMLHatchStyleImport( SvXMLImport& rImport );
~XMLHatchStyleImport();
- sal_Bool importXML(
+ bool importXML(
const ::com::sun::star::uno::Reference<
::com::sun::star::xml::sax::XAttributeList>& xAttrList,
::com::sun::star::uno::Any& rValue,
@@ -57,7 +57,7 @@ public:
XMLHatchStyleExport( SvXMLExport& rExport );
~XMLHatchStyleExport();
- sal_Bool exportXML( const OUString& rStrName, const ::com::sun::star::uno::Any& rValue );
+ bool exportXML( const OUString& rStrName, const ::com::sun::star::uno::Any& rValue );
};
#endif // _XMLOFF_HATCHELEMENT_HXX
diff --git a/include/xmloff/ImageStyle.hxx b/include/xmloff/ImageStyle.hxx
index 3c546e30d494..d3fa5c2d2142 100644
--- a/include/xmloff/ImageStyle.hxx
+++ b/include/xmloff/ImageStyle.hxx
@@ -37,14 +37,14 @@ public:
XMLImageStyle();
~XMLImageStyle();
- sal_Bool exportXML( const OUString& rStrName, const ::com::sun::star::uno::Any& rValue, SvXMLExport& rExport );
- sal_Bool importXML( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList, ::com::sun::star::uno::Any& rValue, OUString& rStrName, SvXMLImport& rImport );
+ void exportXML( const OUString& rStrName, const ::com::sun::star::uno::Any& rValue, SvXMLExport& rExport );
+ bool importXML( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList, ::com::sun::star::uno::Any& rValue, OUString& rStrName, SvXMLImport& rImport );
private:
- SAL_DLLPRIVATE sal_Bool ImpExportXML( const OUString& rStrName, const ::com::sun::star::uno::Any& rValue,
+ SAL_DLLPRIVATE void ImpExportXML( const OUString& rStrName, const ::com::sun::star::uno::Any& rValue,
SvXMLExport& rExport );
- SAL_DLLPRIVATE sal_Bool ImpImportXML( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList,
+ SAL_DLLPRIVATE bool ImpImportXML( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList,
::com::sun::star::uno::Any& rValue, OUString& rStrName,
SvXMLImport& rImport );
};
diff --git a/include/xmloff/MarkerStyle.hxx b/include/xmloff/MarkerStyle.hxx
index 3a51d39e3202..7ec72d1cbc1f 100644
--- a/include/xmloff/MarkerStyle.hxx
+++ b/include/xmloff/MarkerStyle.hxx
@@ -42,7 +42,7 @@ public:
XMLMarkerStyleImport( SvXMLImport& rImport );
~XMLMarkerStyleImport();
- sal_Bool importXML(
+ bool importXML(
const ::com::sun::star::uno::Reference<
::com::sun::star::xml::sax::XAttributeList >& xAttrList,
::com::sun::star::uno::Any& rValue,
@@ -57,7 +57,7 @@ public:
XMLMarkerStyleExport( SvXMLExport& rExport );
~XMLMarkerStyleExport();
- sal_Bool exportXML(
+ void exportXML(
const OUString& rStrName,
const ::com::sun::star::uno::Any& rValue );
};
diff --git a/xmloff/source/style/DashStyle.cxx b/xmloff/source/style/DashStyle.cxx
index 6743026482dd..3ba46fe8842d 100644
--- a/xmloff/source/style/DashStyle.cxx
+++ b/xmloff/source/style/DashStyle.cxx
@@ -85,7 +85,7 @@ XMLDashStyleImport::~XMLDashStyleImport()
{
}
-sal_Bool XMLDashStyleImport::importXML(
+void XMLDashStyleImport::importXML(
const uno::Reference< xml::sax::XAttributeList >& xAttrList,
uno::Any& rValue,
OUString& rStrName )
@@ -203,8 +203,6 @@ sal_Bool XMLDashStyleImport::importXML(
rStrName, aDisplayName );
rStrName = aDisplayName;
}
-
- return sal_True;
}
// Export
@@ -218,11 +216,11 @@ XMLDashStyleExport::~XMLDashStyleExport()
{
}
-sal_Bool XMLDashStyleExport::exportXML(
+bool XMLDashStyleExport::exportXML(
const OUString& rStrName,
const uno::Any& rValue )
{
- sal_Bool bRet = sal_False;
+ bool bRet = false;
SvXMLUnitConverter & rUnitConverter = rExport.GetMM100UnitConverter();
diff --git a/xmloff/source/style/GradientStyle.cxx b/xmloff/source/style/GradientStyle.cxx
index 3dc616321d6c..2fed5d68c725 100644
--- a/xmloff/source/style/GradientStyle.cxx
+++ b/xmloff/source/style/GradientStyle.cxx
@@ -77,12 +77,27 @@ XMLGradientStyleImport::~XMLGradientStyleImport()
{
}
-sal_Bool XMLGradientStyleImport::importXML(
+bool XMLGradientStyleImport::importXML(
const uno::Reference< xml::sax::XAttributeList >& xAttrList,
uno::Any& rValue,
OUString& rStrName )
{
- sal_Bool bRet = sal_False;
+ static const SvXMLTokenMapEntry aGradientAttrTokenMap[] =
+ {
+ { XML_NAMESPACE_DRAW, XML_NAME, XML_TOK_GRADIENT_NAME },
+ { XML_NAMESPACE_DRAW, XML_DISPLAY_NAME, XML_TOK_GRADIENT_DISPLAY_NAME },
+ { XML_NAMESPACE_DRAW, XML_STYLE, XML_TOK_GRADIENT_STYLE },
+ { XML_NAMESPACE_DRAW, XML_CX, XML_TOK_GRADIENT_CX },
+ { XML_NAMESPACE_DRAW, XML_CY, XML_TOK_GRADIENT_CY },
+ { XML_NAMESPACE_DRAW, XML_START_COLOR, XML_TOK_GRADIENT_STARTCOLOR },
+ { XML_NAMESPACE_DRAW, XML_END_COLOR, XML_TOK_GRADIENT_ENDCOLOR },
+ { XML_NAMESPACE_DRAW, XML_START_INTENSITY, XML_TOK_GRADIENT_STARTINT },
+ { XML_NAMESPACE_DRAW, XML_END_INTENSITY, XML_TOK_GRADIENT_ENDINT },
+ { XML_NAMESPACE_DRAW, XML_GRADIENT_ANGLE, XML_TOK_GRADIENT_ANGLE },
+ { XML_NAMESPACE_DRAW, XML_GRADIENT_BORDER, XML_TOK_GRADIENT_BORDER },
+ XML_TOKEN_MAP_END
+ };
+
sal_Bool bHasName = sal_False;
sal_Bool bHasStyle = sal_False;
sal_Bool bHasStartColor = sal_False;
@@ -97,23 +112,6 @@ sal_Bool XMLGradientStyleImport::importXML(
aGradient.Angle = 0;
aGradient.Border = 0;
- {
- static const SvXMLTokenMapEntry aGradientAttrTokenMap[] =
-{
- { XML_NAMESPACE_DRAW, XML_NAME, XML_TOK_GRADIENT_NAME },
- { XML_NAMESPACE_DRAW, XML_DISPLAY_NAME, XML_TOK_GRADIENT_DISPLAY_NAME },
- { XML_NAMESPACE_DRAW, XML_STYLE, XML_TOK_GRADIENT_STYLE },
- { XML_NAMESPACE_DRAW, XML_CX, XML_TOK_GRADIENT_CX },
- { XML_NAMESPACE_DRAW, XML_CY, XML_TOK_GRADIENT_CY },
- { XML_NAMESPACE_DRAW, XML_START_COLOR, XML_TOK_GRADIENT_STARTCOLOR },
- { XML_NAMESPACE_DRAW, XML_END_COLOR, XML_TOK_GRADIENT_ENDCOLOR },
- { XML_NAMESPACE_DRAW, XML_START_INTENSITY, XML_TOK_GRADIENT_STARTINT },
- { XML_NAMESPACE_DRAW, XML_END_INTENSITY, XML_TOK_GRADIENT_ENDINT },
- { XML_NAMESPACE_DRAW, XML_GRADIENT_ANGLE, XML_TOK_GRADIENT_ANGLE },
- { XML_NAMESPACE_DRAW, XML_GRADIENT_BORDER, XML_TOK_GRADIENT_BORDER },
- XML_TOKEN_MAP_END
-};
-
SvXMLTokenMap aTokenMap( aGradientAttrTokenMap );
SvXMLNamespaceMap& rNamespaceMap = rImport.GetNamespaceMap();
@@ -205,9 +203,7 @@ sal_Bool XMLGradientStyleImport::importXML(
rStrName = aDisplayName;
}
- bRet = bHasName && bHasStyle && bHasStartColor && bHasEndColor;
-
- }
+ bool bRet = bHasName && bHasStyle && bHasStartColor && bHasEndColor;
return bRet;
}
@@ -224,11 +220,11 @@ XMLGradientStyleExport::~XMLGradientStyleExport()
{
}
-sal_Bool XMLGradientStyleExport::exportXML(
+bool XMLGradientStyleExport::exportXML(
const OUString& rStrName,
const uno::Any& rValue )
{
- sal_Bool bRet = sal_False;
+ bool bRet = false;
awt::Gradient aGradient;
if( !rStrName.isEmpty() )
@@ -241,7 +237,7 @@ sal_Bool XMLGradientStyleExport::exportXML(
// Style
if( !SvXMLUnitConverter::convertEnum( aOut, aGradient.Style, pXML_GradientStyle_Enum ) )
{
- bRet = sal_False;
+ bRet = false;
}
else
{
diff --git a/xmloff/source/style/HatchStyle.cxx b/xmloff/source/style/HatchStyle.cxx
index e3406f823797..832d19774054 100644
--- a/xmloff/source/style/HatchStyle.cxx
+++ b/xmloff/source/style/HatchStyle.cxx
@@ -68,17 +68,26 @@ XMLHatchStyleImport::~XMLHatchStyleImport()
{
}
-sal_Bool XMLHatchStyleImport::importXML(
+bool XMLHatchStyleImport::importXML(
const uno::Reference< xml::sax::XAttributeList >& xAttrList,
uno::Any& rValue,
OUString& rStrName )
{
- sal_Bool bRet = sal_False;
-
- sal_Bool bHasName = sal_False;
- sal_Bool bHasStyle = sal_False;
- sal_Bool bHasColor = sal_False;
- sal_Bool bHasDist = sal_False;
+ static const SvXMLTokenMapEntry aHatchAttrTokenMap[] =
+ {
+ { XML_NAMESPACE_DRAW, XML_NAME, XML_TOK_HATCH_NAME },
+ { XML_NAMESPACE_DRAW, XML_DISPLAY_NAME, XML_TOK_HATCH_DISPLAY_NAME },
+ { XML_NAMESPACE_DRAW, XML_STYLE, XML_TOK_HATCH_STYLE },
+ { XML_NAMESPACE_DRAW, XML_COLOR, XML_TOK_HATCH_COLOR },
+ { XML_NAMESPACE_DRAW, XML_HATCH_DISTANCE, XML_TOK_HATCH_DISTANCE },
+ { XML_NAMESPACE_DRAW, XML_ROTATION, XML_TOK_HATCH_ROTATION },
+ XML_TOKEN_MAP_END
+ };
+
+ bool bHasName = false;
+ bool bHasStyle = false;
+ bool bHasColor = false;
+ bool bHasDist = false;
OUString aDisplayName;
drawing::Hatch aHatch;
@@ -87,18 +96,6 @@ sal_Bool XMLHatchStyleImport::importXML(
aHatch.Distance = 0;
aHatch.Angle = 0;
- {
- static const SvXMLTokenMapEntry aHatchAttrTokenMap[] =
-{
- { XML_NAMESPACE_DRAW, XML_NAME, XML_TOK_HATCH_NAME },
- { XML_NAMESPACE_DRAW, XML_DISPLAY_NAME, XML_TOK_HATCH_DISPLAY_NAME },
- { XML_NAMESPACE_DRAW, XML_STYLE, XML_TOK_HATCH_STYLE },
- { XML_NAMESPACE_DRAW, XML_COLOR, XML_TOK_HATCH_COLOR },
- { XML_NAMESPACE_DRAW, XML_HATCH_DISTANCE, XML_TOK_HATCH_DISTANCE },
- { XML_NAMESPACE_DRAW, XML_ROTATION, XML_TOK_HATCH_ROTATION },
- XML_TOKEN_MAP_END
-};
-
SvXMLTokenMap aTokenMap( aHatchAttrTokenMap );
SvXMLNamespaceMap rNamespaceMap = rImport.GetNamespaceMap();
SvXMLUnitConverter& rUnitConverter = rImport.GetMM100UnitConverter();
@@ -116,7 +113,7 @@ sal_Bool XMLHatchStyleImport::importXML(
case XML_TOK_HATCH_NAME:
{
rStrName = rStrValue;
- bHasName = sal_True;
+ bHasName = true;
}
break;
case XML_TOK_HATCH_DISPLAY_NAME:
@@ -163,9 +160,7 @@ sal_Bool XMLHatchStyleImport::importXML(
rStrName = aDisplayName;
}
- bRet = bHasName && bHasStyle && bHasColor && bHasDist;
-
- }
+ bool bRet = bHasName && bHasStyle && bHasColor && bHasDist;
return bRet;
}
@@ -181,11 +176,11 @@ XMLHatchStyleExport::~XMLHatchStyleExport()
{
}
-sal_Bool XMLHatchStyleExport::exportXML(
+bool XMLHatchStyleExport::exportXML(
const OUString& rStrName,
const uno::Any& rValue )
{
- sal_Bool bRet = sal_False;
+ bool bRet = false;
drawing::Hatch aHatch;
if( !rStrName.isEmpty() )
@@ -201,7 +196,7 @@ sal_Bool XMLHatchStyleExport::exportXML(
// Style
if( !rUnitConverter.convertEnum( aOut, aHatch.Style, pXML_HatchStyle_Enum ) )
{
- bRet = sal_False;
+ bRet = false;
}
else
{
diff --git a/xmloff/source/style/ImageStyle.cxx b/xmloff/source/style/ImageStyle.cxx
index 791611b37994..0577fc922d86 100644
--- a/xmloff/source/style/ImageStyle.cxx
+++ b/xmloff/source/style/ImageStyle.cxx
@@ -55,15 +55,13 @@ XMLImageStyle::~XMLImageStyle()
{
}
-sal_Bool XMLImageStyle::exportXML( const OUString& rStrName, const ::com::sun::star::uno::Any& rValue, SvXMLExport& rExport )
+void XMLImageStyle::exportXML( const OUString& rStrName, const ::com::sun::star::uno::Any& rValue, SvXMLExport& rExport )
{
- return ImpExportXML( rStrName, rValue, rExport );
+ ImpExportXML( rStrName, rValue, rExport );
}
-sal_Bool XMLImageStyle::ImpExportXML( const OUString& rStrName, const uno::Any& rValue, SvXMLExport& rExport )
+void XMLImageStyle::ImpExportXML( const OUString& rStrName, const uno::Any& rValue, SvXMLExport& rExport )
{
- sal_Bool bRet = sal_False;
-
OUString sImageURL;
if( !rStrName.isEmpty() )
@@ -99,37 +97,33 @@ sal_Bool XMLImageStyle::ImpExportXML( const OUString& rStrName, const uno::Any&
}
}
}
-
- return bRet;
}
-sal_Bool XMLImageStyle::importXML( const uno::Reference< xml::sax::XAttributeList >& xAttrList, uno::Any& rValue, OUString& rStrName, SvXMLImport& rImport )
+bool XMLImageStyle::importXML( const uno::Reference< xml::sax::XAttributeList >& xAttrList, uno::Any& rValue, OUString& rStrName, SvXMLImport& rImport )
{
return ImpImportXML( xAttrList, rValue, rStrName, rImport );
}
-sal_Bool XMLImageStyle::ImpImportXML( const uno::Reference< xml::sax::XAttributeList >& xAttrList,
+bool XMLImageStyle::ImpImportXML( const uno::Reference< xml::sax::XAttributeList >& xAttrList,
uno::Any& rValue, OUString& rStrName,
SvXMLImport& rImport )
{
- sal_Bool bRet = sal_False;
- sal_Bool bHasHRef = sal_False;
- sal_Bool bHasName = sal_False;
+ static const SvXMLTokenMapEntry aHatchAttrTokenMap[] =
+ {
+ { XML_NAMESPACE_DRAW, XML_NAME, XML_TOK_IMAGE_NAME },
+ { XML_NAMESPACE_DRAW, XML_DISPLAY_NAME, XML_TOK_IMAGE_DISPLAY_NAME },
+ { XML_NAMESPACE_XLINK, XML_HREF, XML_TOK_IMAGE_URL },
+ { XML_NAMESPACE_XLINK, XML_TYPE, XML_TOK_IMAGE_TYPE },
+ { XML_NAMESPACE_XLINK, XML_SHOW, XML_TOK_IMAGE_SHOW },
+ { XML_NAMESPACE_XLINK, XML_ACTUATE, XML_TOK_IMAGE_ACTUATE },
+ XML_TOKEN_MAP_END
+ };
+
+ bool bHasHRef = false;
+ bool bHasName = false;
OUString aStrURL;
OUString aDisplayName;
- {
- static const SvXMLTokenMapEntry aHatchAttrTokenMap[] =
-{
- { XML_NAMESPACE_DRAW, XML_NAME, XML_TOK_IMAGE_NAME },
- { XML_NAMESPACE_DRAW, XML_DISPLAY_NAME, XML_TOK_IMAGE_DISPLAY_NAME },
- { XML_NAMESPACE_XLINK, XML_HREF, XML_TOK_IMAGE_URL },
- { XML_NAMESPACE_XLINK, XML_TYPE, XML_TOK_IMAGE_TYPE },
- { XML_NAMESPACE_XLINK, XML_SHOW, XML_TOK_IMAGE_SHOW },
- { XML_NAMESPACE_XLINK, XML_ACTUATE, XML_TOK_IMAGE_ACTUATE },
- XML_TOKEN_MAP_END
-};
-
SvXMLTokenMap aTokenMap( aHatchAttrTokenMap );
sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
@@ -145,7 +139,7 @@ sal_Bool XMLImageStyle::ImpImportXML( const uno::Reference< xml::sax::XAttribute
case XML_TOK_IMAGE_NAME:
{
rStrName = rStrValue;
- bHasName = sal_True;
+ bHasName = true;
}
break;
case XML_TOK_IMAGE_DISPLAY_NAME:
@@ -156,7 +150,7 @@ sal_Bool XMLImageStyle::ImpImportXML( const uno::Reference< xml::sax::XAttribute
case XML_TOK_IMAGE_URL:
{
aStrURL = rImport.ResolveGraphicObjectURL( rStrValue, sal_False );
- bHasHRef = sal_True;
+ bHasHRef = true;
}
break;
case XML_TOK_IMAGE_TYPE:
@@ -183,9 +177,7 @@ sal_Bool XMLImageStyle::ImpImportXML( const uno::Reference< xml::sax::XAttribute
rStrName = aDisplayName;
}
- bRet = bHasName && bHasHRef;
-
- }
+ bool bRet = bHasName && bHasHRef;
return bRet;
}
diff --git a/xmloff/source/style/MarkerStyle.cxx b/xmloff/source/style/MarkerStyle.cxx
index 8c44c99e6797..b07eb1067b35 100644
--- a/xmloff/source/style/MarkerStyle.cxx
+++ b/xmloff/source/style/MarkerStyle.cxx
@@ -48,13 +48,13 @@ XMLMarkerStyleImport::~XMLMarkerStyleImport()
{
}
-sal_Bool XMLMarkerStyleImport::importXML(
+bool XMLMarkerStyleImport::importXML(
const uno::Reference< xml::sax::XAttributeList >& xAttrList,
uno::Any& rValue,
OUString& rStrName )
{
- sal_Bool bHasViewBox = sal_False;
- sal_Bool bHasPathData = sal_False;
+ bool bHasViewBox = false;
+ bool bHasPathData = false;
OUString aDisplayName;
SdXMLImExViewBox* pViewBox = NULL;
@@ -83,13 +83,13 @@ sal_Bool XMLMarkerStyleImport::importXML(
else if( IsXMLToken( aStrAttrName, XML_VIEWBOX ) )
{
pViewBox = new SdXMLImExViewBox( aStrValue, rUnitConverter );
- bHasViewBox = sal_True;
+ bHasViewBox = true;
}
else if( IsXMLToken( aStrAttrName, XML_D ) )
{
strPathData = aStrValue;
- bHasPathData = sal_True;
+ bHasPathData = true;
}
}
@@ -153,12 +153,10 @@ XMLMarkerStyleExport::~XMLMarkerStyleExport()
{
}
-sal_Bool XMLMarkerStyleExport::exportXML(
+void XMLMarkerStyleExport::exportXML(
const OUString& rStrName,
const uno::Any& rValue )
{
- sal_Bool bRet(sal_False);
-
if(!rStrName.isEmpty())
{
drawing::PolyPolygonBezierCoords aBezier;
@@ -206,8 +204,6 @@ sal_Bool XMLMarkerStyleExport::exportXML(
SvXMLElementExport rElem( rExport, XML_NAMESPACE_DRAW, XML_MARKER, sal_True, sal_False );
}
}
-
- return bRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */