summaryrefslogtreecommitdiff
path: root/include
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 /include
parent3daa47e87ad8c51a84750676ca9b9932390dbdcf (diff)
xmloff: sal_Bool->bool
and remove some unused return values Change-Id: I957b4befd2e2574a1d202edee440f65325d5388a
Diffstat (limited to 'include')
-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
5 files changed, 12 insertions, 12 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 );
};