summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpdivinfo.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwpdivinfo.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpdivinfo.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/lotuswordpro/source/filter/lwpdivinfo.hxx b/lotuswordpro/source/filter/lwpdivinfo.hxx
index 86096f33afd3..c04271799d64 100644
--- a/lotuswordpro/source/filter/lwpdivinfo.hxx
+++ b/lotuswordpro/source/filter/lwpdivinfo.hxx
@@ -76,15 +76,15 @@ public:
LwpDivInfo(LwpObjectHeader const & objHdr, LwpSvStream* pStrm);
LwpObjectID& GetInitialLayoutID() { return m_InitialLayoutID; }
LwpObjectID& GetFillerPageTextID() { return m_FillerPageTextID; }
- OUString const & GetDivName() { return m_Name.str(); }
+ OUString const & GetDivName() const { return m_Name.str(); }
- OUString const & GetClassName() { return m_ClassName.str(); }
- inline bool HasContents();
- inline bool IsOleDivision();
- inline bool IsScrollable();
- inline bool IsGotoable();
+ OUString const & GetClassName() const { return m_ClassName.str(); }
+ inline bool HasContents() const;
+ inline bool IsOleDivision() const;
+ inline bool IsScrollable() const;
+ inline bool IsGotoable() const;
void GetNumberOfPages(sal_uInt16& nPageno);
- sal_uInt16 GetMaxNumberOfPages();
+ sal_uInt16 GetMaxNumberOfPages() const;
protected:
void Read() override;
private:
@@ -129,12 +129,12 @@ private:
};
-inline bool LwpDivInfo::HasContents()
+inline bool LwpDivInfo::HasContents() const
{
return (m_nFlags & DI_HASCONTENTS) != 0;
}
-inline bool LwpDivInfo::IsOleDivision()
+inline bool LwpDivInfo::IsOleDivision() const
{
OUString strClassName = GetClassName();
if (strClassName == STR_OleDivisionClassName)
@@ -142,12 +142,12 @@ inline bool LwpDivInfo::IsOleDivision()
return false;
}
-inline bool LwpDivInfo::IsScrollable()
+inline bool LwpDivInfo::IsScrollable() const
{
return (m_nFlags & DI_SCROLLABLE) != 0;
}
-inline bool LwpDivInfo::IsGotoable()
+inline bool LwpDivInfo::IsGotoable() const
{
return HasContents() && (IsScrollable() || IsOleDivision());
}