summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpsilverbullet.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-17 11:48:35 +0200
committerNoel Grandin <noel@peralex.com>2015-07-17 11:50:06 +0200
commit0f732c41bc4edd7075ff68a81c0ca299e3e913c9 (patch)
tree395e8ebdf457db355dc0dd5ac161311d7eda850d /lotuswordpro/source/filter/lwpsilverbullet.hxx
parentformatting of public/private/protected section qualifiers (diff)
downloadcore-0f732c41bc4edd7075ff68a81c0ca299e3e913c9.tar.gz
core-0f732c41bc4edd7075ff68a81c0ca299e3e913c9.zip
loplugin:unusedmethods lotuswordpro
Change-Id: I17927d48a75c332f1ddc3853145b14daac17f9c0
Diffstat (limited to 'lotuswordpro/source/filter/lwpsilverbullet.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpsilverbullet.hxx26
1 files changed, 4 insertions, 22 deletions
diff --git a/lotuswordpro/source/filter/lwpsilverbullet.hxx b/lotuswordpro/source/filter/lwpsilverbullet.hxx
index 41b2a38f7218..dfa11584e670 100644
--- a/lotuswordpro/source/filter/lwpsilverbullet.hxx
+++ b/lotuswordpro/source/filter/lwpsilverbullet.hxx
@@ -113,17 +113,17 @@ public:
static OUString GetSuffix() { return OUString(); }
- inline OUString GetNumberingName();
+ ;
- inline LwpPara* GetNumberingPara();
+ ;
bool HasName();
static OUString GetNumCharByStyleID(LwpFribParaNumber* pParaNumber);
- static inline bool IsPosCumulative(sal_uInt16 nHideLevels);
+ ;
inline bool IsLesserLevel(sal_uInt16 nPos);
- inline bool IsNewSection(sal_uInt16 nPos);
+ ;
LwpPara* GetBulletPara();
@@ -160,28 +160,10 @@ inline OUString LwpSilverBullet::GetBulletStyleName() const
{
return m_strStyleName;
}
-
-inline OUString LwpSilverBullet::GetNumberingName()
-{
- return GetName().str();
-}
-inline LwpPara* LwpSilverBullet::GetNumberingPara()
-{
- return m_pBulletPara;
-}
-inline bool LwpSilverBullet::IsPosCumulative(sal_uInt16 nHideLevels)
-{
- sal_uInt16 AttrMask = ~nHideLevels;
- return ((AttrMask & (AttrMask - 1)) != 0);
-}
inline bool LwpSilverBullet::IsLesserLevel(sal_uInt16 nPos)
{
return ((m_pResetPositionFlags[nPos] & LESSERLEVEL) != 0);
}
-inline bool LwpSilverBullet::IsNewSection(sal_uInt16 nPos)
-{
- return ((m_pResetPositionFlags[nPos] & NEWSECTION) != 0);
-}
#endif