summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpstory.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-09 10:09:42 +0200
committerNoel Grandin <noel@peralex.com>2014-06-09 10:10:13 +0200
commit184a00b96235f6432294ded63ce4a4a318effdb5 (patch)
treee4ae0e00cb168fa43d280cfb51a50515258b5320 /lotuswordpro/source/filter/lwpstory.hxx
parent534015ad4fd08823b4393dab1ad5d42dedd7bf62 (diff)
loplugin: inlinesimplememberfunctions
Change-Id: I42119f656ca528286fb25d2d36c0af54b7d04a6b
Diffstat (limited to 'lotuswordpro/source/filter/lwpstory.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpstory.hxx30
1 files changed, 5 insertions, 25 deletions
diff --git a/lotuswordpro/source/filter/lwpstory.hxx b/lotuswordpro/source/filter/lwpstory.hxx
index f096e7d8c999..a1777240f850 100644
--- a/lotuswordpro/source/filter/lwpstory.hxx
+++ b/lotuswordpro/source/filter/lwpstory.hxx
@@ -112,13 +112,13 @@ public:
XFContentContainer* GetXFContent();
void AddXFContent(XFContent* pContent);
- inline bool GetDropcapFlag();
- inline LwpPageLayout* GetCurrentLayout();
+ bool GetDropcapFlag() { return m_bDropcap; }
+ LwpPageLayout* GetCurrentLayout() { return m_pCurrentLayout; }
inline LwpMiddleLayout* GetTabLayout();//for register tab style
- inline OUString GetSectionName();
- inline LwpHyperlinkMgr* GetHyperlinkMgr();
+ OUString GetSectionName() { return m_CurrSectionName; }
+ LwpHyperlinkMgr* GetHyperlinkMgr() { return m_pHyperlinkMgr; }
- inline bool IsPMModified();
+ inline bool IsPMModified() { return m_bPMModified; }
inline void SetPMModified(bool bPMModified);
inline void SetDropcapFlag(bool bFlag);
inline void SetTabLayout(LwpLayout* pLayout);
@@ -151,10 +151,6 @@ LwpObjectID* LwpStory::GetLastPara()
{
return m_ParaList.GetTail();
}
-bool LwpStory::GetDropcapFlag()
-{
- return m_bDropcap;
-}
LwpMiddleLayout* LwpStory::GetTabLayout()
{
if(m_pTabLayout)
@@ -177,22 +173,6 @@ void LwpStory::SetSectionName(const OUString& StyleName)
{
m_CurrSectionName = StyleName;
}
-OUString LwpStory::GetSectionName()
-{
- return m_CurrSectionName;
-}
-bool LwpStory::IsPMModified()
-{
- return m_bPMModified;
-}
-LwpPageLayout* LwpStory::GetCurrentLayout()
-{
- return m_pCurrentLayout;
-}
-LwpHyperlinkMgr* LwpStory::GetHyperlinkMgr()
-{
- return m_pHyperlinkMgr;
-}
inline void LwpStory::AddBullStyleName2List(const OUString& rStyleName, const sal_uInt8& nPos)
{
m_vBulletStyleNameList.push_back(std::make_pair(rStyleName, nPos));