diff options
author | Carsten Driesner <cd@openoffice.org> | 2011-01-17 15:06:54 +0100 |
---|---|---|
committer | Carsten Driesner <cd@openoffice.org> | 2011-01-17 15:06:54 +0100 |
commit | 7f33ed417b2e29e5470724ea76967f64699a2662 (patch) | |
tree | abfa1432c5ffffe4c7502d4ddcaee918c584c69c /sw/inc/fmtinfmt.hxx | |
parent | 80731dbfcb48a2ffec30a4b2abe1ba8ada8f0169 (diff) |
removetooltypes01: #i112600# Remove tools types from sw
Diffstat (limited to 'sw/inc/fmtinfmt.hxx')
-rw-r--r-- | sw/inc/fmtinfmt.hxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sw/inc/fmtinfmt.hxx b/sw/inc/fmtinfmt.hxx index 75fc863b147d..bfb6d35d2e76 100644 --- a/sw/inc/fmtinfmt.hxx +++ b/sw/inc/fmtinfmt.hxx @@ -49,8 +49,8 @@ class SW_DLLPUBLIC SwFmtINetFmt: public SfxPoolItem String aName; // Name des Links SvxMacroTableDtor* pMacroTbl; SwTxtINetFmt* pTxtAttr; // mein TextAttribut - USHORT nINetId; - USHORT nVisitedId; + sal_uInt16 nINetId; + sal_uInt16 nVisitedId; public: SwFmtINetFmt( const String& rURL, const String& rTarget ); SwFmtINetFmt( const SwFmtINetFmt& rAttr ); @@ -68,10 +68,10 @@ public: String &rText, const IntlWrapper* pIntl = 0 ) const; - virtual BOOL QueryValue( com::sun::star::uno::Any& rVal, - BYTE nMemberId = 0 ) const; - virtual BOOL PutValue( const com::sun::star::uno::Any& rVal, - BYTE nMemberId = 0 ); + virtual sal_Bool QueryValue( com::sun::star::uno::Any& rVal, + sal_uInt8 nMemberId = 0 ) const; + virtual sal_Bool PutValue( const com::sun::star::uno::Any& rVal, + sal_uInt8 nMemberId = 0 ); const SwTxtINetFmt* GetTxtINetFmt() const { return pTxtAttr; } @@ -90,19 +90,19 @@ public: const String& GetVisitedFmt() const { return aVisitedFmt; } void SetVisitedFmt( const String& rNm ) { aVisitedFmt = rNm; } - USHORT GetINetFmtId() const { return nINetId; } - void SetINetFmtId( USHORT nNew ) { nINetId = nNew; } + sal_uInt16 GetINetFmtId() const { return nINetId; } + void SetINetFmtId( sal_uInt16 nNew ) { nINetId = nNew; } - USHORT GetVisitedFmtId() const { return nVisitedId; } - void SetVisitedFmtId( USHORT nNew ) { nVisitedId = nNew; } + sal_uInt16 GetVisitedFmtId() const { return nVisitedId; } + void SetVisitedFmtId( sal_uInt16 nNew ) { nVisitedId = nNew; } // setze eine neue oder loesche die akt. MakroTabelle void SetMacroTbl( const SvxMacroTableDtor* pTbl = 0 ); const SvxMacroTableDtor* GetMacroTbl() const { return pMacroTbl; } // setze / erfrage ein Makro - void SetMacro( USHORT nEvent, const SvxMacro& rMacro ); - const SvxMacro* GetMacro( USHORT nEvent ) const; + void SetMacro( sal_uInt16 nEvent, const SvxMacro& rMacro ); + const SvxMacro* GetMacro( sal_uInt16 nEvent ) const; }; |