diff options
Diffstat (limited to 'sw/inc/txtatr.hxx')
-rw-r--r-- | sw/inc/txtatr.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/txtatr.hxx b/sw/inc/txtatr.hxx index aa346e0e1d..e26257e774 100644 --- a/sw/inc/txtatr.hxx +++ b/sw/inc/txtatr.hxx @@ -40,7 +40,7 @@ class SwCharFmt; class SwTxtCharFmt : public SwTxtAttrEnd { SwTxtNode * m_pTxtNode; - USHORT m_nSortNumber; + sal_uInt16 m_nSortNumber; public: SwTxtCharFmt( SwFmtCharFmt& rAttr, xub_StrLen nStart, xub_StrLen nEnd ); @@ -48,13 +48,13 @@ public: // werden vom SwFmtCharFmt hierher weitergeleitet virtual void Modify( SfxPoolItem*, SfxPoolItem* ); // SwClient - virtual BOOL GetInfo( SfxPoolItem& rInfo ) const; + virtual sal_Bool GetInfo( SfxPoolItem& rInfo ) const; // get and set TxtNode pointer void ChgTxtNode( SwTxtNode* pNew ) { m_pTxtNode = pNew; } - void SetSortNumber( USHORT nSortNumber ) { m_nSortNumber = nSortNumber; } - USHORT GetSortNumber() const { return m_nSortNumber; } + void SetSortNumber( sal_uInt16 nSortNumber ) { m_nSortNumber = nSortNumber; } + sal_uInt16 GetSortNumber() const { return m_nSortNumber; } }; @@ -96,7 +96,7 @@ public: TYPEINFO(); virtual void Modify( SfxPoolItem *pOld, SfxPoolItem *pNew); - virtual BOOL GetInfo( SfxPoolItem& rInfo ) const; + virtual sal_Bool GetInfo( SfxPoolItem& rInfo ) const; /// get and set TxtNode pointer const SwTxtNode* GetpTxtNode() const { return m_pTxtNode; } |