summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpcontent.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/lwpcontent.hxx
parentca56379f27c53d4fa015d7adbb9494186f506de6 (diff)
lotuswordpro: sal_Bool->bool
Change-Id: I017d284a2fbc8d50a9928c9d934ffe710b0c652f
Diffstat (limited to 'lotuswordpro/source/filter/lwpcontent.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpcontent.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/lotuswordpro/source/filter/lwpcontent.hxx b/lotuswordpro/source/filter/lwpcontent.hxx
index aaca21980649..fae9fccab048 100644
--- a/lotuswordpro/source/filter/lwpcontent.hxx
+++ b/lotuswordpro/source/filter/lwpcontent.hxx
@@ -111,12 +111,12 @@ protected:
public:
inline LwpAssociatedLayouts* GetLayoutsWithMe();
LwpVirtualLayout* GetLayout(LwpVirtualLayout* pStartLayout);
- inline sal_Bool IsActive();
- virtual sal_Bool IsTable();
+ inline bool IsActive();
+ virtual bool IsTable();
inline OUString GetClassName();
inline LwpContent* GetNextEnumerated();
- sal_Bool HasNonEmbeddedLayouts();
- sal_Bool IsStyleContent();
+ bool HasNonEmbeddedLayouts();
+ bool IsStyleContent();
};
LwpAssociatedLayouts* LwpContent::GetLayoutsWithMe()
@@ -124,14 +124,14 @@ LwpAssociatedLayouts* LwpContent::GetLayoutsWithMe()
return &m_LayoutsWithMe;
}
-inline sal_Bool LwpContent::IsActive()
+inline bool LwpContent::IsActive()
{
return !(m_nFlags & CF_DEACTIVATED);
}
-inline sal_Bool LwpContent::IsTable()
+inline bool LwpContent::IsTable()
{
- return sal_False;
+ return false;
}
inline OUString LwpContent::GetClassName()