summaryrefslogtreecommitdiff
path: root/xmloff/inc
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-09-16 15:06:48 +0200
committerEike Rathke <erack@redhat.com>2013-09-16 15:08:18 +0200
commit0825d0cb76a84503d77d7e635947e1f4da7e299d (patch)
treef034eb235914b6d600c07d9b9f98744515f66674 /xmloff/inc
parentd6e9bb17675200e12777ed23d0c685fbd2bb4c59 (diff)
sal_Bool to bool
Change-Id: Id32780e5cb565e85f0366a91282ce085ed7d2f3c
Diffstat (limited to 'xmloff/inc')
-rw-r--r--xmloff/inc/AttributeContainerHandler.hxx4
-rw-r--r--xmloff/inc/XMLBitmapLogicalSizePropertyHandler.hxx4
-rw-r--r--xmloff/inc/XMLBitmapRepeatOffsetPropertyHandler.hxx8
-rw-r--r--xmloff/inc/XMLClipPropertyHandler.hxx8
-rw-r--r--xmloff/inc/XMLFillBitmapSizePropertyHandler.hxx4
-rw-r--r--xmloff/inc/XMLIsPercentagePropertyHandler.hxx4
-rw-r--r--xmloff/inc/XMLPercentOrMeasurePropertyHandler.hxx8
-rw-r--r--xmloff/inc/XMLRectangleMembersHandler.hxx4
-rw-r--r--xmloff/inc/XMLTextColumnsPropertyHandler.hxx4
9 files changed, 24 insertions, 24 deletions
diff --git a/xmloff/inc/AttributeContainerHandler.hxx b/xmloff/inc/AttributeContainerHandler.hxx
index f8aef32d5a79..2cd36e1e08ac 100644
--- a/xmloff/inc/AttributeContainerHandler.hxx
+++ b/xmloff/inc/AttributeContainerHandler.hxx
@@ -32,8 +32,8 @@ public:
virtual bool equals( const ::com::sun::star::uno::Any& r1, const ::com::sun::star::uno::Any& r2 ) const;
- virtual sal_Bool importXML( const OUString& rStrImpValue, ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const;
- virtual sal_Bool exportXML( OUString& rStrExpValue, const ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const;
+ virtual bool importXML( const OUString& rStrImpValue, ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const;
+ virtual bool exportXML( OUString& rStrExpValue, const ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const;
};
#endif // _XMLOFF_ATTRIBUTECONTAINERHANDLER_HXX
diff --git a/xmloff/inc/XMLBitmapLogicalSizePropertyHandler.hxx b/xmloff/inc/XMLBitmapLogicalSizePropertyHandler.hxx
index 22d96e51e9f5..e6e591a7944e 100644
--- a/xmloff/inc/XMLBitmapLogicalSizePropertyHandler.hxx
+++ b/xmloff/inc/XMLBitmapLogicalSizePropertyHandler.hxx
@@ -38,13 +38,13 @@ public:
virtual ~XMLBitmapLogicalSizePropertyHandler();
/// Imports the given value in cas of the given XML-data-type
- virtual sal_Bool importXML(
+ virtual bool importXML(
const OUString& rStrImpValue,
::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
/// Exports the given value in cas of the given XML-data-type
- virtual sal_Bool exportXML(
+ virtual bool exportXML(
OUString& rStrExpValue,
const ::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
diff --git a/xmloff/inc/XMLBitmapRepeatOffsetPropertyHandler.hxx b/xmloff/inc/XMLBitmapRepeatOffsetPropertyHandler.hxx
index 54e28e180940..2429a9ce9b1a 100644
--- a/xmloff/inc/XMLBitmapRepeatOffsetPropertyHandler.hxx
+++ b/xmloff/inc/XMLBitmapRepeatOffsetPropertyHandler.hxx
@@ -29,24 +29,24 @@ struct SvXMLEnumMapEntry;
*/
class XMLBitmapRepeatOffsetPropertyHandler: public XMLPropertyHandler
{
- sal_Bool mbX;
+ bool mbX;
OUString msVertical;
OUString msHorizontal;
public:
- XMLBitmapRepeatOffsetPropertyHandler( sal_Bool bX );
+ XMLBitmapRepeatOffsetPropertyHandler( bool bX );
// Just needed for virtual destruction
virtual ~XMLBitmapRepeatOffsetPropertyHandler();
/// Imports the given value in cas of the given XML-data-type
- virtual sal_Bool importXML(
+ virtual bool importXML(
const OUString& rStrImpValue,
::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
/// Exports the given value in cas of the given XML-data-type
- virtual sal_Bool exportXML(
+ virtual bool exportXML(
OUString& rStrExpValue,
const ::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
diff --git a/xmloff/inc/XMLClipPropertyHandler.hxx b/xmloff/inc/XMLClipPropertyHandler.hxx
index 2df7f08bd596..c690218bd7b8 100644
--- a/xmloff/inc/XMLClipPropertyHandler.hxx
+++ b/xmloff/inc/XMLClipPropertyHandler.hxx
@@ -27,14 +27,14 @@
*/
class XMLClipPropertyHandler : public XMLPropertyHandler
{
- sal_Bool m_bODF11;
+ bool m_bODF11;
public:
- XMLClipPropertyHandler( sal_Bool bODF11 );
+ XMLClipPropertyHandler( bool bODF11 );
virtual ~XMLClipPropertyHandler();
virtual bool equals( const ::com::sun::star::uno::Any& r1, const ::com::sun::star::uno::Any& r2 ) const;
- virtual sal_Bool importXML( const OUString& rStrImpValue, ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const;
- virtual sal_Bool exportXML( OUString& rStrExpValue, const ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const;
+ virtual bool importXML( const OUString& rStrImpValue, ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const;
+ virtual bool exportXML( OUString& rStrExpValue, const ::com::sun::star::uno::Any& rValue, const SvXMLUnitConverter& rUnitConverter ) const;
};
#endif // _XMLOFF_PROPERTYHANDLER_BASICTYPES_HXX
diff --git a/xmloff/inc/XMLFillBitmapSizePropertyHandler.hxx b/xmloff/inc/XMLFillBitmapSizePropertyHandler.hxx
index 3b57c55db3de..95dc21575573 100644
--- a/xmloff/inc/XMLFillBitmapSizePropertyHandler.hxx
+++ b/xmloff/inc/XMLFillBitmapSizePropertyHandler.hxx
@@ -38,13 +38,13 @@ public:
virtual ~XMLFillBitmapSizePropertyHandler();
/// Imports the given value in cas of the given XML-data-type
- virtual sal_Bool importXML(
+ virtual bool importXML(
const OUString& rStrImpValue,
::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
/// Exports the given value in cas of the given XML-data-type
- virtual sal_Bool exportXML(
+ virtual bool exportXML(
OUString& rStrExpValue,
const ::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
diff --git a/xmloff/inc/XMLIsPercentagePropertyHandler.hxx b/xmloff/inc/XMLIsPercentagePropertyHandler.hxx
index e2691960595b..b7d4e74bd21c 100644
--- a/xmloff/inc/XMLIsPercentagePropertyHandler.hxx
+++ b/xmloff/inc/XMLIsPercentagePropertyHandler.hxx
@@ -31,11 +31,11 @@ class XMLIsPercentagePropertyHandler : public XMLPropertyHandler
public:
virtual ~XMLIsPercentagePropertyHandler ();
- virtual sal_Bool importXML(
+ virtual bool importXML(
const OUString& rStrImpValue,
::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
- virtual sal_Bool exportXML(
+ virtual bool exportXML(
OUString& rStrExpValue,
const ::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
diff --git a/xmloff/inc/XMLPercentOrMeasurePropertyHandler.hxx b/xmloff/inc/XMLPercentOrMeasurePropertyHandler.hxx
index a7f94b43ac87..1b4e0e7735ba 100644
--- a/xmloff/inc/XMLPercentOrMeasurePropertyHandler.hxx
+++ b/xmloff/inc/XMLPercentOrMeasurePropertyHandler.hxx
@@ -28,16 +28,16 @@
class XMLPercentOrMeasurePropertyHandler : public XMLPropertyHandler
{
private:
- sal_Bool mbPercent;
+ bool mbPercent;
public:
- XMLPercentOrMeasurePropertyHandler( sal_Bool bPercent );
+ XMLPercentOrMeasurePropertyHandler( bool bPercent );
virtual ~XMLPercentOrMeasurePropertyHandler ();
- virtual sal_Bool importXML(
+ virtual bool importXML(
const OUString& rStrImpValue,
::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
- virtual sal_Bool exportXML(
+ virtual bool exportXML(
OUString& rStrExpValue,
const ::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
diff --git a/xmloff/inc/XMLRectangleMembersHandler.hxx b/xmloff/inc/XMLRectangleMembersHandler.hxx
index 1f478af704b2..e216daf43a37 100644
--- a/xmloff/inc/XMLRectangleMembersHandler.hxx
+++ b/xmloff/inc/XMLRectangleMembersHandler.hxx
@@ -40,13 +40,13 @@ public:
virtual ~XMLRectangleMembersHdl();
/// Imports the given value in cas of the given XML-data-type
- virtual sal_Bool importXML(
+ virtual bool importXML(
const OUString& rStrImpValue,
::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
/// Exports the given value in cas of the given XML-data-type
- virtual sal_Bool exportXML(
+ virtual bool exportXML(
OUString& rStrExpValue,
const ::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
diff --git a/xmloff/inc/XMLTextColumnsPropertyHandler.hxx b/xmloff/inc/XMLTextColumnsPropertyHandler.hxx
index 6a533e7080fc..41dad369d525 100644
--- a/xmloff/inc/XMLTextColumnsPropertyHandler.hxx
+++ b/xmloff/inc/XMLTextColumnsPropertyHandler.hxx
@@ -35,11 +35,11 @@ public:
const ::com::sun::star::uno::Any& r2 ) const;
/// TabStops will be imported/exported as XML-Elements. So the Import/Export-work must be done at another place.
- virtual sal_Bool importXML(
+ virtual bool importXML(
const OUString& rStrImpValue,
::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;
- virtual sal_Bool exportXML(
+ virtual bool exportXML(
OUString& rStrExpValue,
const ::com::sun::star::uno::Any& rValue,
const SvXMLUnitConverter& rUnitConverter ) const;