Kaydet (Commit) e140e40c authored tarafından Noel Grandin's avatar Noel Grandin

loplugin:expandablemethodds in lotuswordpro..package

Change-Id: Id33d88edc4be00f4238792d885e392cc08e72386
Reviewed-on: https://gerrit.libreoffice.org/30017Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 0aa24916
...@@ -273,7 +273,6 @@ public: // Internal methods ...@@ -273,7 +273,6 @@ public: // Internal methods
inline pCBenValueSegment GetNextValueSegment(pCBenValueSegment inline pCBenValueSegment GetNextValueSegment(pCBenValueSegment
pCurrValueSegment); pCurrValueSegment);
inline pLtcBenContainer GetContainer();
CUtList& GetValueSegments() { return cValueSegments; } CUtList& GetValueSegments() { return cValueSegments; }
private: // Data private: // Data
...@@ -337,8 +336,6 @@ inline pCBenValueSegment CBenValue::GetNextValueSegment(pCBenValueSegment ...@@ -337,8 +336,6 @@ inline pCBenValueSegment CBenValue::GetNextValueSegment(pCBenValueSegment
pCurrValueSegment) pCurrValueSegment)
{ return static_cast<pCBenValueSegment>( cValueSegments.GetNextOrNULL(pCurrValueSegment) ); } { return static_cast<pCBenValueSegment>( cValueSegments.GetNextOrNULL(pCurrValueSegment) ); }
inline pLtcBenContainer CBenValue::GetContainer()
{ return GetProperty()->GetContainer(); }
class CBenNamedObject : public CBenObject class CBenNamedObject : public CBenObject
{ {
......
...@@ -76,7 +76,7 @@ CBenValue::ReadValueData(void * pReadBuffer, unsigned long Offset, ...@@ -76,7 +76,7 @@ CBenValue::ReadValueData(void * pReadBuffer, unsigned long Offset,
unsigned long SegOffset = 0; unsigned long SegOffset = 0;
*pAmtRead = 0; *pAmtRead = 0;
pCBenValueSegment pCurrSeg = nullptr; pCBenValueSegment pCurrSeg = nullptr;
pLtcBenContainer pContainer = GetContainer(); pLtcBenContainer pContainer = GetProperty()->GetContainer();
BenByte* pBuffer = static_cast<BenByte*>(pReadBuffer); BenByte* pBuffer = static_cast<BenByte*>(pReadBuffer);
/// pReadBuffer -- pointer to buffer of read result, allocated outside this function /// pReadBuffer -- pointer to buffer of read result, allocated outside this function
......
...@@ -204,8 +204,8 @@ LwpFrib* LwpFrib::CreateFrib(LwpPara* pPara, LwpObjectStream* pObjStrm, sal_uInt ...@@ -204,8 +204,8 @@ LwpFrib* LwpFrib::CreateFrib(LwpPara* pPara, LwpObjectStream* pObjStrm, sal_uInt
newFrib->SetModifiers(pModInfo); newFrib->SetModifiers(pModInfo);
} }
newFrib->SetType(fribtype); newFrib->m_nFribType = fribtype;
newFrib->SetEditor(editID); newFrib->m_nEditor = editID;
newFrib->Read(pObjStrm, friblen); newFrib->Read(pObjStrm, friblen);
return newFrib; return newFrib;
} }
......
...@@ -93,8 +93,6 @@ public: ...@@ -93,8 +93,6 @@ public:
LwpFrib* GetNext(){return m_pNext;} LwpFrib* GetNext(){return m_pNext;}
void SetNext(LwpFrib* next){m_pNext = next;} void SetNext(LwpFrib* next){m_pNext = next;}
sal_uInt8 GetType() { return m_nFribType;} sal_uInt8 GetType() { return m_nFribType;}
void SetType(sal_uInt8 type) { m_nFribType = type;}
void SetEditor(sal_uInt8 editor) { m_nEditor = editor;}
OUString GetEditor(); OUString GetEditor();
XFColor GetHighlightColor(); XFColor GetHighlightColor();
protected: protected:
......
...@@ -77,7 +77,6 @@ public: ...@@ -77,7 +77,6 @@ public:
virtual ~LwpFribCHBlock() override {} virtual ~LwpFribCHBlock() override {}
void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override;
LwpCHBlkMarker* GetMarker(); LwpCHBlkMarker* GetMarker();
sal_uInt8 GetType(){return m_nType;}
enum{MARKER_START=1,MARKER_END,MARKER_NONE}; enum{MARKER_START=1,MARKER_END,MARKER_NONE};
void XFConvert(XFContentContainer* pXFPara,LwpStory* pStory); void XFConvert(XFContentContainer* pXFPara,LwpStory* pStory);
private: private:
...@@ -151,7 +150,6 @@ public: ...@@ -151,7 +150,6 @@ public:
virtual ~LwpFribRubyMarker() override {} virtual ~LwpFribRubyMarker() override {}
void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override;
LwpRubyMarker* GetMarker(); LwpRubyMarker* GetMarker();
sal_uInt8 GetType(){return m_nType;}
enum{MARKER_START=1,MARKER_END,MARKER_NONE}; enum{MARKER_START=1,MARKER_END,MARKER_NONE};
void XFConvert(XFContentContainer* pXFPara); void XFConvert(XFContentContainer* pXFPara);
void RegisterStyle(LwpFoundry* pFoundry) override; void RegisterStyle(LwpFoundry* pFoundry) override;
......
...@@ -382,7 +382,7 @@ void LwpMasterPage::ParseSection(LwpFrib* pFrib) ...@@ -382,7 +382,7 @@ void LwpMasterPage::ParseSection(LwpFrib* pFrib)
if(m_pLayout->HasFillerPageText(m_pPara->GetFoundry())) if(m_pLayout->HasFillerPageText(m_pPara->GetFoundry()))
{ {
XFParagraph *pPara = new XFParagraph(); XFParagraph *pPara = new XFParagraph();
pPara->SetStyleName(GetFillerPageStyleName()); pPara->SetStyleName(m_FillerPageStyleName);
m_pPara->AddXFContent(pPara); m_pPara->AddXFContent(pPara);
rFribPtr.SetXFPara(pPara); rFribPtr.SetXFPara(pPara);
...@@ -419,7 +419,7 @@ void LwpMasterPage::ParseSection(LwpFrib* pFrib) ...@@ -419,7 +419,7 @@ void LwpMasterPage::ParseSection(LwpFrib* pFrib)
if(pFrib->HasNextFrib()) if(pFrib->HasNextFrib())
{ {
XFParagraph *pNextPara = new XFParagraph(); XFParagraph *pNextPara = new XFParagraph();
pNextPara->SetStyleName(GetStyleName()); pNextPara->SetStyleName(m_StyleName);
m_pPara->AddXFContent(pNextPara); m_pPara->AddXFContent(pNextPara);
rFribPtr.SetXFPara(pNextPara); rFribPtr.SetXFPara(pNextPara);
} }
......
...@@ -81,8 +81,6 @@ public: ...@@ -81,8 +81,6 @@ public:
void ParseSection(LwpFrib* pFrib); void ParseSection(LwpFrib* pFrib);
XFSection* CreateXFSection(); XFSection* CreateXFSection();
const OUString& GetStyleName(){ return m_StyleName;}
const OUString& GetFillerPageStyleName(){ return m_FillerPageStyleName;}
bool IsNextPageType(); bool IsNextPageType();
private: private:
......
...@@ -105,17 +105,8 @@ LwpObjectFactory::LwpObjectFactory(LwpSvStream* pSvStream) ...@@ -105,17 +105,8 @@ LwpObjectFactory::LwpObjectFactory(LwpSvStream* pSvStream)
LwpObjectFactory::~LwpObjectFactory() LwpObjectFactory::~LwpObjectFactory()
{ {
if(!m_IdToObjList.empty())
ClearObjectMap();
} }
/**
* @descr clear object map and delete all objects
*/
void LwpObjectFactory::ClearObjectMap()
{
m_IdToObjList.clear();
}
/** /**
* @descr read the index manager * @descr read the index manager
*/ */
......
...@@ -105,7 +105,6 @@ private: ...@@ -105,7 +105,6 @@ private:
typedef std::unordered_map<LwpObjectID, rtl::Reference<LwpObject>, hashFunc, eqFunc> LwpIdToObjMap; typedef std::unordered_map<LwpObjectID, rtl::Reference<LwpObject>, hashFunc, eqFunc> LwpIdToObjMap;
LwpIdToObjMap m_IdToObjList; LwpIdToObjMap m_IdToObjList;
LwpIndexManager m_IndexMgr; LwpIndexManager m_IndexMgr;
void ClearObjectMap();
protected: protected:
rtl::Reference<LwpObject> FindObject(const LwpObjectID &objID); rtl::Reference<LwpObject> FindObject(const LwpObjectID &objID);
......
...@@ -175,8 +175,6 @@ public: ...@@ -175,8 +175,6 @@ public:
OUString const & GetContentText(bool bAllText = false); OUString const & GetContentText(bool bAllText = false);
void SetParaDropcap(bool bFlag); void SetParaDropcap(bool bFlag);
void SetDropcapLines(sal_uInt16 number);
void SetDropcapChars(sal_uInt32 chars);
void SetDropcapLayout(LwpDropcapLayout* pLayout); void SetDropcapLayout(LwpDropcapLayout* pLayout);
XFContentContainer* GetXFContainer(); XFContentContainer* GetXFContainer();
...@@ -186,7 +184,6 @@ public: ...@@ -186,7 +184,6 @@ public:
void RegisterTabStyle(XFParaStyle* pXFParaStyle); void RegisterTabStyle(XFParaStyle* pXFParaStyle);
LwpBulletStyleMgr* GetBulletStyleMgr(); LwpBulletStyleMgr* GetBulletStyleMgr();
sal_uInt32 GetOrdinal(){ return m_nOrdinal;}
bool operator <(LwpPara& Other); bool operator <(LwpPara& Other);
bool ComparePagePosition(LwpVirtualLayout* pPreLayout, LwpVirtualLayout* pNextLayout); bool ComparePagePosition(LwpVirtualLayout* pPreLayout, LwpVirtualLayout* pNextLayout);
...@@ -351,14 +348,6 @@ inline void LwpPara::SetParaDropcap(bool bFlag) ...@@ -351,14 +348,6 @@ inline void LwpPara::SetParaDropcap(bool bFlag)
{ {
m_bHasDropcap = bFlag; m_bHasDropcap = bFlag;
} }
inline void LwpPara::SetDropcapLines(sal_uInt16 number)
{
m_nLines = number;
}
inline void LwpPara::SetDropcapChars(sal_uInt32 chars)
{
m_nChars = chars;
}
inline void LwpPara::SetDropcapLayout(LwpDropcapLayout* pLayout) inline void LwpPara::SetDropcapLayout(LwpDropcapLayout* pLayout)
{ {
m_pDropcapLayout = pLayout; m_pDropcapLayout = pLayout;
......
...@@ -100,6 +100,7 @@ ...@@ -100,6 +100,7 @@
#include "lwpdropcapmgr.hxx" #include "lwpdropcapmgr.hxx"
#include "lwptable.hxx" #include "lwptable.hxx"
#include "lwpcelllayout.hxx" #include "lwpcelllayout.hxx"
#include "lwpframelayout.hxx"
// boost::polymorphic_downcast checks and reports (using assert), if the // boost::polymorphic_downcast checks and reports (using assert), if the
// cast is incorrect (in debug builds). // cast is incorrect (in debug builds).
...@@ -148,11 +149,10 @@ XFParaStyle* LwpPara::GetXFParaStyle() ...@@ -148,11 +149,10 @@ XFParaStyle* LwpPara::GetXFParaStyle()
/** /**
* @short get drop cap info * @short get drop cap info
*/ */
#include "lwpframelayout.hxx"
void LwpPara::GatherDropcapInfo() void LwpPara::GatherDropcapInfo()
{ {
SetDropcapLines(m_pDropcapLayout->GetLines()); m_nLines = m_pDropcapLayout->GetLines();
SetDropcapChars(m_pDropcapLayout->GetChars()); m_nChars = m_pDropcapLayout->GetChars();
} }
/** /**
* @short get parent paragraph * @short get parent paragraph
...@@ -593,7 +593,7 @@ LwpTabOverride* LwpPara::GetLocalTabOverride() ...@@ -593,7 +593,7 @@ LwpTabOverride* LwpPara::GetLocalTabOverride()
*/ */
bool LwpPara::operator< (LwpPara& Other) bool LwpPara::operator< (LwpPara& Other)
{ {
return m_nOrdinal < Other.GetOrdinal(); return m_nOrdinal < Other.m_nOrdinal;
} }
/** /**
......
...@@ -57,14 +57,6 @@ ...@@ -57,14 +57,6 @@
LwpPrinterInfo::LwpPrinterInfo(LwpObjectStream* pStrm) LwpPrinterInfo::LwpPrinterInfo(LwpObjectStream* pStrm)
{ {
Read(pStrm);
}
/**
* @descr read printer info in VO_DOCUMENT
*/
void LwpPrinterInfo::Read(LwpObjectStream* pStrm)
{
//Just skip now
Skip(pStrm); Skip(pStrm);
} }
/** /**
......
...@@ -74,7 +74,6 @@ public: ...@@ -74,7 +74,6 @@ public:
~LwpPrinterInfo(){} ~LwpPrinterInfo(){}
public: public:
static void Read(LwpObjectStream* pStrm);
static void Skip(LwpObjectStream *pStrm); static void Skip(LwpObjectStream *pStrm);
}; };
#endif #endif
......
...@@ -90,7 +90,6 @@ public: ...@@ -90,7 +90,6 @@ public:
inline LwpObjectID& GetTabRackID(); inline LwpObjectID& GetTabRackID();
inline bool IsTabRackOverridden(); inline bool IsTabRackOverridden();
inline void Override(LwpTabOverride* pOther); inline void Override(LwpTabOverride* pOther);
inline void OverrideTabRack(LwpObjectID* pTabRackID);
protected: protected:
LwpTabOverride(LwpTabOverride const& rOther); LwpTabOverride(LwpTabOverride const& rOther);
...@@ -117,7 +116,7 @@ inline void LwpTabOverride::Override(LwpTabOverride* pOther) ...@@ -117,7 +116,7 @@ inline void LwpTabOverride::Override(LwpTabOverride* pOther)
{ {
if (IsTabRackOverridden()) if (IsTabRackOverridden())
//m_aTabRackID = *(pOther->GetTabRackID()); //m_aTabRackID = *(pOther->GetTabRackID());
pOther->OverrideTabRack(&GetTabRackID()); pOther->m_aTabRackID = GetTabRackID();
} }
} }
...@@ -126,10 +125,6 @@ inline bool LwpTabOverride::IsTabRackOverridden() ...@@ -126,10 +125,6 @@ inline bool LwpTabOverride::IsTabRackOverridden()
return (m_nOverride & TO_TABRACK) != 0; return (m_nOverride & TO_TABRACK) != 0;
} }
inline void LwpTabOverride::OverrideTabRack(LwpObjectID* pTabRackID)
{
m_aTabRackID = *pTabRackID;
}
#endif #endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -102,7 +102,7 @@ void LwpCellList::Parse(IXFStream* /*pOutputStream*/) ...@@ -102,7 +102,7 @@ void LwpCellList::Parse(IXFStream* /*pOutputStream*/)
void LwpCellList::Convert(XFCell * pCell, LwpTableLayout* /*pCellsMap*/) void LwpCellList::Convert(XFCell * pCell, LwpTableLayout* /*pCellsMap*/)
{ {
LwpObjectID aValueID = GetValueID(); LwpObjectID aValueID = cValue;
LwpNumericValue* pValue = dynamic_cast<LwpNumericValue*>(aValueID.obj().get()); LwpNumericValue* pValue = dynamic_cast<LwpNumericValue*>(aValueID.obj().get());
if (pValue) if (pValue)
{ {
......
...@@ -84,7 +84,6 @@ public: ...@@ -84,7 +84,6 @@ public:
virtual void Parse(IXFStream* pOutputStream) override; virtual void Parse(IXFStream* pOutputStream) override;
LwpObjectID GetNextID(){return GetNext();} LwpObjectID GetNextID(){return GetNext();}
sal_uInt8 GetColumnID(){return cColumn;} sal_uInt8 GetColumnID(){return cColumn;}
const LwpObjectID& GetValueID(){return cValue;}
virtual void Convert(XFCell * pCell, LwpTableLayout* pCellsMap=nullptr); virtual void Convert(XFCell * pCell, LwpTableLayout* pCellsMap=nullptr);
protected: protected:
......
...@@ -68,7 +68,7 @@ CUtListElmt::CUtListElmt(pCUtList pList) ...@@ -68,7 +68,7 @@ CUtListElmt::CUtListElmt(pCUtList pList)
CUtListElmt::~CUtListElmt() CUtListElmt::~CUtListElmt()
{ {
if (OnList()) if (cpNext != nullptr)
{ {
cpPrev->cpNext = cpNext; cpPrev->cpNext = cpNext;
cpNext->cpPrev = cpPrev; cpNext->cpPrev = cpPrev;
......
...@@ -75,7 +75,6 @@ public: // Methods ...@@ -75,7 +75,6 @@ public: // Methods
explicit CUtListElmt(pCUtListElmt pPrev) { InsertAfter(pPrev); } explicit CUtListElmt(pCUtListElmt pPrev) { InsertAfter(pPrev); }
explicit CUtListElmt(pCUtList pList); explicit CUtListElmt(pCUtList pList);
virtual ~CUtListElmt(); virtual ~CUtListElmt();
bool OnList() { return cpNext != nullptr; }
void MakeNotOnList() { cpNext = nullptr; } // Same as Remove but doesn't void MakeNotOnList() { cpNext = nullptr; } // Same as Remove but doesn't
// patch up list // patch up list
pCUtListElmt GetNext() const { return cpNext; } pCUtListElmt GetNext() const { return cpNext; }
......
...@@ -65,12 +65,6 @@ XFFontFactory::XFFontFactory() ...@@ -65,12 +65,6 @@ XFFontFactory::XFFontFactory()
XFFontFactory::~XFFontFactory() XFFontFactory::~XFFontFactory()
{ {
Reset();
}
void XFFontFactory::Reset()
{
s_aFonts.clear();
} }
void XFFontFactory::AddFont(rtl::Reference<XFFont> const & pFont) void XFFontFactory::AddFont(rtl::Reference<XFFont> const & pFont)
......
...@@ -81,12 +81,6 @@ public: ...@@ -81,12 +81,6 @@ public:
~XFFontFactory(); ~XFFontFactory();
XFFontFactory(const XFFontFactory&){} XFFontFactory(const XFFontFactory&){}
public:
/**
* @descr Clear all fonts, this is called when load a file.
*/
void Reset();
private: private:
/** /**
* @descr Add a font. if there exist a font with same properties with pFont, them the font object * @descr Add a font. if there exist a font with same properties with pFont, them the font object
......
...@@ -77,7 +77,6 @@ private: ...@@ -77,7 +77,6 @@ private:
throw(css::uno::RuntimeException); throw(css::uno::RuntimeException);
public: public:
bool IsEncrypted () const { return m_bIsEncrypted;}
bool IsPackageMember () const { return m_nStreamMode == PACKAGE_STREAM_PACKAGEMEMBER;} bool IsPackageMember () const { return m_nStreamMode == PACKAGE_STREAM_PACKAGEMEMBER;}
bool IsFromManifest() const { return m_bFromManifest; } bool IsFromManifest() const { return m_bFromManifest; }
......
...@@ -920,7 +920,7 @@ void ZipPackageStream::successfullyWritten( ZipEntry *pEntry ) ...@@ -920,7 +920,7 @@ void ZipPackageStream::successfullyWritten( ZipEntry *pEntry )
ZipPackageFolder::copyZipEntry( aEntry, *pEntry ); ZipPackageFolder::copyZipEntry( aEntry, *pEntry );
// TODO/LATER: get rid of this hack ( the encrypted stream size property is changed during saving ) // TODO/LATER: get rid of this hack ( the encrypted stream size property is changed during saving )
if ( IsEncrypted() ) if ( m_bIsEncrypted )
setSize( m_nOwnStreamOrigSize ); setSize( m_nOwnStreamOrigSize );
aEntry.nOffset *= -1; aEntry.nOffset *= -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment