Kaydet (Commit) 1b8c1ffe authored tarafından Caolán McNamara's avatar Caolán McNamara

make these operators well-formed

Change-Id: Ic1a2dad00b7f62e4df380fdef8b271fa94de8558
üst 29124588
...@@ -180,10 +180,10 @@ private: ...@@ -180,10 +180,10 @@ private:
public: public:
SectRepr(sal_uInt16 nPos, SwSection& rSect); SectRepr(sal_uInt16 nPos, SwSection& rSect);
bool operator==(SectRepr& rSectRef) const bool operator==(const SectRepr& rSectRef) const
{ return m_nArrPos == rSectRef.GetArrPos(); } { return m_nArrPos == rSectRef.GetArrPos(); }
bool operator< (SectRepr& rSectRef) const bool operator< (const SectRepr& rSectRef) const
{ return m_nArrPos < rSectRef.GetArrPos(); } { return m_nArrPos < rSectRef.GetArrPos(); }
SwSectionData & GetSectionData() { return m_SectionData; } SwSectionData & GetSectionData() { return m_SectionData; }
......
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