Kaydet (Commit) 078673b6 authored tarafından Miklos Vajna's avatar Miklos Vajna

sw: prefix members of SwUpdateAttr

Change-Id: I6006ce61ed28fc748495ac58d191e1cfa95e3335
üst dcdba6ed
...@@ -98,32 +98,32 @@ public: ...@@ -98,32 +98,32 @@ public:
class SwUpdateAttr : public SwMsgPoolItem class SwUpdateAttr : public SwMsgPoolItem
{ {
private: private:
sal_Int32 nStart; sal_Int32 m_nStart;
sal_Int32 nEnd; sal_Int32 m_nEnd;
sal_uInt16 nWhichAttr; sal_uInt16 m_nWhichAttr;
std::vector<sal_uInt16> aWhichFormatAttr; // attributes changed inside RES_TXTATR_AUTOFMT std::vector<sal_uInt16> m_aWhichFormatAttr; // attributes changed inside RES_TXTATR_AUTOFMT
public: public:
SwUpdateAttr( sal_Int32 nS, sal_Int32 nE, sal_uInt16 nW ); SwUpdateAttr( sal_Int32 nS, sal_Int32 nE, sal_uInt16 nW );
sal_Int32 getStart() const sal_Int32 getStart() const
{ {
return nStart; return m_nStart;
} }
sal_Int32 getEnd() const sal_Int32 getEnd() const
{ {
return nEnd; return m_nEnd;
} }
sal_uInt16 getWhichAttr() const sal_uInt16 getWhichAttr() const
{ {
return nWhichAttr; return m_nWhichAttr;
} }
const std::vector<sal_uInt16>& getFormatAttr() const const std::vector<sal_uInt16>& getFormatAttr() const
{ {
return aWhichFormatAttr; return m_aWhichFormatAttr;
} }
}; };
......
...@@ -45,7 +45,7 @@ SwDelText::SwDelText( sal_Int32 nS, sal_Int32 nL ) ...@@ -45,7 +45,7 @@ SwDelText::SwDelText( sal_Int32 nS, sal_Int32 nL )
} }
SwUpdateAttr::SwUpdateAttr( sal_Int32 nS, sal_Int32 nE, sal_uInt16 nW ) SwUpdateAttr::SwUpdateAttr( sal_Int32 nS, sal_Int32 nE, sal_uInt16 nW )
: SwMsgPoolItem( RES_UPDATE_ATTR ), nStart( nS ), nEnd( nE ), nWhichAttr( nW ), aWhichFormatAttr() : SwMsgPoolItem( RES_UPDATE_ATTR ), m_nStart( nS ), m_nEnd( nE ), m_nWhichAttr( nW ), m_aWhichFormatAttr()
{ {
} }
......
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