summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpfootnote.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-22 14:14:14 +0200
committerNoel Grandin <noel@peralex.com>2014-04-23 11:11:50 +0200
commit2692047aacef7b4288f995ce6ff2db5e16b71014 (patch)
tree2d43552ad1a01cfb6287d54f35b5ae3ca538393b /lotuswordpro/source/filter/lwpfootnote.hxx
parentlingucomponent: sal_Bool->bool (diff)
downloadcore-2692047aacef7b4288f995ce6ff2db5e16b71014.tar.gz
core-2692047aacef7b4288f995ce6ff2db5e16b71014.zip
lotuswordpro: sal_Bool->bool
Change-Id: I017d284a2fbc8d50a9928c9d934ffe710b0c652f
Diffstat (limited to 'lotuswordpro/source/filter/lwpfootnote.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpfootnote.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwpfootnote.hxx b/lotuswordpro/source/filter/lwpfootnote.hxx
index a71d520e3fd9..1d95043228e5 100644
--- a/lotuswordpro/source/filter/lwpfootnote.hxx
+++ b/lotuswordpro/source/filter/lwpfootnote.hxx
@@ -232,8 +232,8 @@ public:
sal_uInt32 GetAbove(){ return m_nAbove;}
sal_uInt32 GetBelow(){ return m_nBelow;}
LwpBorderStuff* GetBorderStuff(){ return &m_BorderStuff;}
- sal_Bool HasCustomLength(){ return (m_nFlag & CUSTOM_LENGTH) != 0;}
- sal_Bool HasSeparator(){ return (m_nFlag & HAS_SEPARATOR) != 0;}
+ bool HasCustomLength(){ return (m_nFlag & CUSTOM_LENGTH) != 0;}
+ bool HasSeparator(){ return (m_nFlag & HAS_SEPARATOR) != 0;}
float GetTopBorderWidth(){ return m_BorderStuff.GetSideWidth(LwpBorderStuff::TOP);}
LwpColor GetTopBorderColor(){ return m_BorderStuff.GetSideColor(LwpBorderStuff::TOP);}
};
@@ -282,8 +282,8 @@ public:
LwpFootnoteNumberOptions* GetEndnoteDocNumbering(){ return &m_EndnoteDocNumbering;}
LwpFootnoteSeparatorOptions* GetFootnoteSeparator(){ return &m_FootnoteSeparator;}
LwpFootnoteSeparatorOptions* GetFootnoteContinuedSeparator(){ return &m_FootnoteContinuedSeparator;}
- sal_Bool GetContinuedFrom(){ return ((m_nFlag & FO_CONTINUEFROM) != 0);}
- sal_Bool GetContinuedOn(){ return ((m_nFlag & FO_CONTINUEON) != 0);}
+ bool GetContinuedFrom(){ return ((m_nFlag & FO_CONTINUEFROM) != 0);}
+ bool GetContinuedOn(){ return ((m_nFlag & FO_CONTINUEON) != 0);}
OUString GetContinuedOnMessage();
OUString GetContinuedFromMessage();
void SetMasterPage(const OUString& strMasterPage){ m_strMasterPage = strMasterPage;}