summaryrefslogtreecommitdiff
path: root/sw/source/filter/xml/xmltexti.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-28 14:13:18 +0200
committerNoel Grandin <noel@peralex.com>2014-03-31 12:39:01 +0200
commitf907d740351886194bf2c9bcffceed22c4698ca5 (patch)
treef331d31592b38c1e8ab987787713fc7c99499042 /sw/source/filter/xml/xmltexti.hxx
parentba6cfaaa6b5012875bc68d24519f4e658f7fe0e0 (diff)
xmloff: sal_Bool->bool
Change-Id: Ib8c99a646923257647487cd7f121023876587cd2
Diffstat (limited to 'sw/source/filter/xml/xmltexti.hxx')
-rw-r--r--sw/source/filter/xml/xmltexti.hxx17
1 files changed, 8 insertions, 9 deletions
diff --git a/sw/source/filter/xml/xmltexti.hxx b/sw/source/filter/xml/xmltexti.hxx
index 1cd0357ce7d4..0d8adef943e9 100644
--- a/sw/source/filter/xml/xmltexti.hxx
+++ b/sw/source/filter/xml/xmltexti.hxx
@@ -66,7 +66,7 @@ public:
createAndInsertApplet(
const OUString &rName,
const OUString &rCode,
- sal_Bool bMayScript,
+ bool bMayScript,
const OUString& rHRef,
sal_Int32 nWidth, sal_Int32 nHeight ) SAL_OVERRIDE;
@@ -89,7 +89,7 @@ public:
const ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet > &rPropSet,
::std::map < const OUString, OUString > &rParamMap) SAL_OVERRIDE;
- virtual sal_Bool IsInHeaderFooter() const SAL_OVERRIDE;
+ virtual bool IsInHeaderFooter() const SAL_OVERRIDE;
// redlining helper methods
// (here is the real implementation)
@@ -99,7 +99,7 @@ public:
const OUString& rAuthor, /// name of the author
const OUString& rComment, /// redline comment
const ::com::sun::star::util::DateTime& rDateTime, /// date+time
- sal_Bool bMergeLastPara) SAL_OVERRIDE; /// merge last paragraph
+ bool bMergeLastPara) SAL_OVERRIDE; /// merge last paragraph
virtual ::com::sun::star::uno::Reference<
::com::sun::star::text::XTextCursor> RedlineCreateText(
::com::sun::star::uno::Reference< /// needed to get the document
@@ -107,12 +107,11 @@ public:
const OUString& rId) SAL_OVERRIDE; /// ID used to RedlineAdd() call
virtual void RedlineSetCursor(
const OUString& rId, /// ID used to RedlineAdd() call
- sal_Bool bStart, /// start or end Cursor
- sal_Bool bIsOutsideOfParagraph) SAL_OVERRIDE;
- virtual void RedlineAdjustStartNodeCursor(
- sal_Bool bStart) SAL_OVERRIDE;
- virtual void SetShowChanges( sal_Bool bShowChanges ) SAL_OVERRIDE;
- virtual void SetRecordChanges( sal_Bool bRecordChanges ) SAL_OVERRIDE;
+ bool bStart, /// start or end Cursor
+ bool bIsOutsideOfParagraph) SAL_OVERRIDE;
+ virtual void RedlineAdjustStartNodeCursor( bool bStart) SAL_OVERRIDE;
+ virtual void SetShowChanges( bool bShowChanges ) SAL_OVERRIDE;
+ virtual void SetRecordChanges( bool bRecordChanges ) SAL_OVERRIDE;
virtual void SetChangesProtectionKey(
const ::com::sun::star::uno::Sequence<sal_Int8> & rKey ) SAL_OVERRIDE;
};