diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2015-05-20 13:05:49 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2015-05-20 13:05:49 +0200 |
commit | ab465b90f6c6da5595393a0ba73f33a1e71a2b65 (patch) | |
tree | 36b77192de2799a11b4bf0b269cb3f74d0a0bb1f /sw/inc/fmtinfmt.hxx | |
parent | 0db96caf0fcce09b87621c11b584a6d81cc7df86 (diff) |
bin/rename-sw-abbreviations.sh
libreoffice-5-0-branch-point
renames the most annoying abbreviations in Writer (and partially
in the shared code too).
Change-Id: I9a62759138126c1537cc5c985ba05cf54d6132d9
Diffstat (limited to 'sw/inc/fmtinfmt.hxx')
-rw-r--r-- | sw/inc/fmtinfmt.hxx | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/sw/inc/fmtinfmt.hxx b/sw/inc/fmtinfmt.hxx index d3c4d6b8b48f..35d7a7dc88ec 100644 --- a/sw/inc/fmtinfmt.hxx +++ b/sw/inc/fmtinfmt.hxx @@ -24,29 +24,29 @@ class SvxMacro; class SvxMacroTableDtor; -class SwTxtINetFmt; +class SwTextINetFormat; class IntlWrapper; // ATT_INETFMT -class SW_DLLPUBLIC SwFmtINetFmt: public SfxPoolItem +class SW_DLLPUBLIC SwFormatINetFormat: public SfxPoolItem { - friend class SwTxtINetFmt; + friend class SwTextINetFormat; OUString msURL; ///< URL. OUString msTargetFrame; ///< Target frame for URL. - OUString msINetFmtName; - OUString msVisitedFmtName; + OUString msINetFormatName; + OUString msVisitedFormatName; OUString msHyperlinkName; ///< Name of the link. - SvxMacroTableDtor* mpMacroTbl; - SwTxtINetFmt* mpTxtAttr; ///< My TextAttribute. - sal_uInt16 mnINetFmtId; - sal_uInt16 mnVisitedFmtId; + SvxMacroTableDtor* mpMacroTable; + SwTextINetFormat* mpTextAttr; ///< My TextAttribute. + sal_uInt16 mnINetFormatId; + sal_uInt16 mnVisitedFormatId; public: - SwFmtINetFmt( const OUString& rURL, const OUString& rTarget ); - SwFmtINetFmt( const SwFmtINetFmt& rAttr ); - SwFmtINetFmt(); ///< For TypeInfo. - virtual ~SwFmtINetFmt(); + SwFormatINetFormat( const OUString& rURL, const OUString& rTarget ); + SwFormatINetFormat( const SwFormatINetFormat& rAttr ); + SwFormatINetFormat(); ///< For TypeInfo. + virtual ~SwFormatINetFormat(); TYPEINFO_OVERRIDE(); @@ -64,13 +64,13 @@ public: virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) SAL_OVERRIDE; - const SwTxtINetFmt* GetTxtINetFmt() const + const SwTextINetFormat* GetTextINetFormat() const { - return mpTxtAttr; + return mpTextAttr; } - SwTxtINetFmt* GetTxtINetFmt() + SwTextINetFormat* GetTextINetFormat() { - return mpTxtAttr; + return mpTextAttr; } const OUString& GetValue() const @@ -92,47 +92,47 @@ public: return msTargetFrame; } - void SetINetFmtAndId( + void SetINetFormatAndId( const OUString& rNm, const sal_uInt16 nId ) { - msINetFmtName = rNm; - mnINetFmtId = nId; + msINetFormatName = rNm; + mnINetFormatId = nId; } - const OUString& GetINetFmt() const + const OUString& GetINetFormat() const { - return msINetFmtName; + return msINetFormatName; } - sal_uInt16 GetINetFmtId() const + sal_uInt16 GetINetFormatId() const { - return mnINetFmtId; + return mnINetFormatId; } - void SetVisitedFmtAndId( + void SetVisitedFormatAndId( const OUString& rNm, const sal_uInt16 nId ) { - msVisitedFmtName = rNm; - mnVisitedFmtId = nId; + msVisitedFormatName = rNm; + mnVisitedFormatId = nId; } - const OUString& GetVisitedFmt() const + const OUString& GetVisitedFormat() const { - return msVisitedFmtName; + return msVisitedFormatName; } - sal_uInt16 GetVisitedFmtId() const + sal_uInt16 GetVisitedFormatId() const { - return mnVisitedFmtId; + return mnVisitedFormatId; } /// Set a new MacroTable or clear the current one. - void SetMacroTbl( const SvxMacroTableDtor* pTbl = 0 ); - const SvxMacroTableDtor* GetMacroTbl() const + void SetMacroTable( const SvxMacroTableDtor* pTable = 0 ); + const SvxMacroTableDtor* GetMacroTable() const { - return mpMacroTbl; + return mpMacroTable; } /// Macro getter and setter. |