loplugin:unusedfields lotuswordpro
Change-Id: If7d15d4293993f52e68ac059b3091aa88fb68e95
This commit is contained in:
@@ -99,13 +99,6 @@ struct LwpDocControl
|
|||||||
LwpAtomHolder cDocControlOnlyEditor;
|
LwpAtomHolder cDocControlOnlyEditor;
|
||||||
sal_uInt16 nEditorVerification;
|
sal_uInt16 nEditorVerification;
|
||||||
};
|
};
|
||||||
struct lcolor
|
|
||||||
{
|
|
||||||
sal_uInt16 cred; // When extra is AGLRGB_INDEX, cred holds the
|
|
||||||
sal_uInt16 cgreen; // hi 16 bits and cgreen holds the lo 16 bits of
|
|
||||||
sal_uInt16 cblue; // the 32-bit LUT index.
|
|
||||||
sal_uInt16 cextra;
|
|
||||||
};
|
|
||||||
struct LwpFontDescriptionOverrideBase
|
struct LwpFontDescriptionOverrideBase
|
||||||
{
|
{
|
||||||
sal_uInt8 cOverrideBits;
|
sal_uInt8 cOverrideBits;
|
||||||
|
@@ -1874,7 +1874,6 @@ LwpPlacableLayout::LwpPlacableLayout( LwpObjectHeader &objHdr, LwpSvStream* pStr
|
|||||||
, m_nWrapType(0)
|
, m_nWrapType(0)
|
||||||
, m_nBuoyancy(0)
|
, m_nBuoyancy(0)
|
||||||
, m_nBaseLineOffset(0)
|
, m_nBaseLineOffset(0)
|
||||||
, m_nPageNumber(0)
|
|
||||||
{}
|
{}
|
||||||
|
|
||||||
LwpPlacableLayout::~LwpPlacableLayout()
|
LwpPlacableLayout::~LwpPlacableLayout()
|
||||||
|
@@ -430,7 +430,6 @@ protected:
|
|||||||
sal_Int32 m_nBaseLineOffset;
|
sal_Int32 m_nBaseLineOffset;
|
||||||
LwpAtomHolder m_Script;
|
LwpAtomHolder m_Script;
|
||||||
LwpObjectID m_LayRelativity;
|
LwpObjectID m_LayRelativity;
|
||||||
sal_uInt16 m_nPageNumber;//for frame anchored to page
|
|
||||||
rtl::Reference<XFFont> m_pFont;//for frame position
|
rtl::Reference<XFFont> m_pFont;//for frame position
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
@@ -241,7 +241,6 @@ protected:
|
|||||||
|
|
||||||
XFContentContainer* m_pXFContainer; //Current container for VO_PARA
|
XFContentContainer* m_pXFContainer; //Current container for VO_PARA
|
||||||
|
|
||||||
OUString m_TabStyleName;
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
/* bit definitions for the paragraph object flags */
|
/* bit definitions for the paragraph object flags */
|
||||||
|
@@ -128,8 +128,6 @@ private:
|
|||||||
LwpAtomHolder m_DestPGName[MAX_LEVELS];
|
LwpAtomHolder m_DestPGName[MAX_LEVELS];
|
||||||
sal_uInt32 m_nFlags[MAX_LEVELS];
|
sal_uInt32 m_nFlags[MAX_LEVELS];
|
||||||
|
|
||||||
std::vector<std::pair<OUString,OUString> > m_TOCList;
|
|
||||||
|
|
||||||
OUString m_TabStyleName;
|
OUString m_TabStyleName;
|
||||||
|
|
||||||
XFContentContainer* m_pCont;
|
XFContentContainer* m_pCont;
|
||||||
|
@@ -63,13 +63,11 @@
|
|||||||
XFDate::XFDate()
|
XFDate::XFDate()
|
||||||
{
|
{
|
||||||
m_bFixed = false;
|
m_bFixed = false;
|
||||||
memset(&m_aDateTime, 0, sizeof(m_aDateTime));
|
|
||||||
m_bValued = false;
|
m_bValued = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
XFDate::~XFDate()
|
XFDate::~XFDate()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void XFDate::ToXml(IXFStream *pStrm)
|
void XFDate::ToXml(IXFStream *pStrm)
|
||||||
|
@@ -76,11 +76,10 @@ public:
|
|||||||
virtual void ToXml(IXFStream *pStrm) override;
|
virtual void ToXml(IXFStream *pStrm) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool m_bFixed;
|
bool m_bFixed;
|
||||||
OUString m_strText;
|
OUString m_strText;
|
||||||
XFDateTime m_aDateTime;
|
OUString m_strDate;
|
||||||
OUString m_strDate;
|
bool m_bValued;
|
||||||
bool m_bValued;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class XFDateStart : public XFDate
|
class XFDateStart : public XFDate
|
||||||
|
@@ -462,17 +462,6 @@ enum enumXFIndexTemplate
|
|||||||
enumXFIndexTemplateBibliography,
|
enumXFIndexTemplateBibliography,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct XFDateTime
|
|
||||||
{
|
|
||||||
sal_Int32 nYear;
|
|
||||||
sal_Int32 nMonth;
|
|
||||||
sal_Int32 nDay;
|
|
||||||
sal_Int32 nHour;
|
|
||||||
sal_Int32 nMinute;
|
|
||||||
sal_Int32 nSecond;
|
|
||||||
sal_Int32 nMillSecond;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum enumXFRubyPosition
|
enum enumXFRubyPosition
|
||||||
{
|
{
|
||||||
enumXFRubyLeft = 4,
|
enumXFRubyLeft = 4,
|
||||||
|
@@ -99,7 +99,6 @@ public:
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
rtl::Reference<XFContentContainer> m_aContents;
|
rtl::Reference<XFContentContainer> m_aContents;
|
||||||
OUString m_strTextStyle;
|
|
||||||
double m_fRotate;
|
double m_fRotate;
|
||||||
XFPoint m_aRotatePoint;
|
XFPoint m_aRotatePoint;
|
||||||
double m_fScaleX;
|
double m_fScaleX;
|
||||||
|
@@ -175,9 +175,6 @@ class XFListLevelImage : public XFListLevel
|
|||||||
public:
|
public:
|
||||||
virtual void ToXml(IXFStream *pStrm) override;
|
virtual void ToXml(IXFStream *pStrm) override;
|
||||||
private:
|
private:
|
||||||
sal_Int16 m_nWidth;
|
|
||||||
sal_Int16 m_nHeight;
|
|
||||||
OUString m_strBinaryData;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class XFListStyle : public XFStyle
|
class XFListStyle : public XFStyle
|
||||||
|
Reference in New Issue
Block a user