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

loplugin:unusedfields lotuswordpro

Change-Id: If7d15d4293993f52e68ac059b3091aa88fb68e95
üst 2e1d74dc
......@@ -99,13 +99,6 @@ struct LwpDocControl
LwpAtomHolder cDocControlOnlyEditor;
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
{
sal_uInt8 cOverrideBits;
......
......@@ -1874,7 +1874,6 @@ LwpPlacableLayout::LwpPlacableLayout( LwpObjectHeader &objHdr, LwpSvStream* pStr
, m_nWrapType(0)
, m_nBuoyancy(0)
, m_nBaseLineOffset(0)
, m_nPageNumber(0)
{}
LwpPlacableLayout::~LwpPlacableLayout()
......
......@@ -430,7 +430,6 @@ protected:
sal_Int32 m_nBaseLineOffset;
LwpAtomHolder m_Script;
LwpObjectID m_LayRelativity;
sal_uInt16 m_nPageNumber;//for frame anchored to page
rtl::Reference<XFFont> m_pFont;//for frame position
};
#endif
......
......@@ -241,7 +241,6 @@ protected:
XFContentContainer* m_pXFContainer; //Current container for VO_PARA
OUString m_TabStyleName;
enum
{
/* bit definitions for the paragraph object flags */
......
......@@ -128,8 +128,6 @@ private:
LwpAtomHolder m_DestPGName[MAX_LEVELS];
sal_uInt32 m_nFlags[MAX_LEVELS];
std::vector<std::pair<OUString,OUString> > m_TOCList;
OUString m_TabStyleName;
XFContentContainer* m_pCont;
......
......@@ -63,13 +63,11 @@
XFDate::XFDate()
{
m_bFixed = false;
memset(&m_aDateTime, 0, sizeof(m_aDateTime));
m_bValued = false;
}
XFDate::~XFDate()
{
}
void XFDate::ToXml(IXFStream *pStrm)
......
......@@ -76,11 +76,10 @@ public:
virtual void ToXml(IXFStream *pStrm) override;
private:
bool m_bFixed;
OUString m_strText;
XFDateTime m_aDateTime;
OUString m_strDate;
bool m_bValued;
bool m_bFixed;
OUString m_strText;
OUString m_strDate;
bool m_bValued;
};
class XFDateStart : public XFDate
......
......@@ -462,17 +462,6 @@ enum enumXFIndexTemplate
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
{
enumXFRubyLeft = 4,
......
......@@ -99,7 +99,6 @@ public:
protected:
rtl::Reference<XFContentContainer> m_aContents;
OUString m_strTextStyle;
double m_fRotate;
XFPoint m_aRotatePoint;
double m_fScaleX;
......
......@@ -175,9 +175,6 @@ class XFListLevelImage : public XFListLevel
public:
virtual void ToXml(IXFStream *pStrm) override;
private:
sal_Int16 m_nWidth;
sal_Int16 m_nHeight;
OUString m_strBinaryData;
};
class XFListStyle : public XFStyle
......
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