summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/swcss1.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
commit567ef6d5782cdb729b49005caf6005610ce03e22 (patch)
tree7e3be1da41382e555d9091914ef7e064852a4fd4 /sw/source/filter/html/swcss1.hxx
parentc36daa01f444ebad799c1cc7a106f1b4bb3c3d12 (diff)
Second batch of adding SAL_OVERRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
Diffstat (limited to 'sw/source/filter/html/swcss1.hxx')
-rw-r--r--sw/source/filter/html/swcss1.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/filter/html/swcss1.hxx b/sw/source/filter/html/swcss1.hxx
index cdf24be7f927..63a0e58db1db 100644
--- a/sw/source/filter/html/swcss1.hxx
+++ b/sw/source/filter/html/swcss1.hxx
@@ -70,7 +70,7 @@ class SwCSS1Parser : public SvxCSS1Parser
protected:
virtual sal_Bool StyleParsed( const CSS1Selector *pSelector,
SfxItemSet& rItemSet,
- SvxCSS1PropertyInfo& rPropInfo );
+ SvxCSS1PropertyInfo& rPropInfo ) SAL_OVERRIDE;
using CSS1Parser::ParseStyleSheet;
@@ -78,13 +78,13 @@ public:
SwCSS1Parser( SwDoc *pDoc, sal_uInt32 aFHeight[7], const OUString& rBaseURL, sal_Bool bNewDoc );
virtual ~SwCSS1Parser();
- virtual sal_Bool ParseStyleSheet( const OUString& rIn );
+ virtual sal_Bool ParseStyleSheet( const OUString& rIn ) SAL_OVERRIDE;
// Die Font-Hoehe fuer eine bestimmte Font-Groesse (0-6) ermitteln
- virtual sal_uInt32 GetFontHeight( sal_uInt16 nSize ) const;
+ virtual sal_uInt32 GetFontHeight( sal_uInt16 nSize ) const SAL_OVERRIDE;
// Die aktuelle Font-Liste holen (auch 0 ist erlaubt)
- virtual const FontList *GetFontList() const;
+ virtual const FontList *GetFontList() const SAL_OVERRIDE;
// das Zeichen-Format zu einem Token und einer ggf leeren Klasse
// ermitteln
@@ -160,7 +160,7 @@ public:
inline void SetATagStyles();
inline void SetDelayedStyles();
- virtual void SetDfltEncoding( rtl_TextEncoding eEnc );
+ virtual void SetDfltEncoding( rtl_TextEncoding eEnc ) SAL_OVERRIDE;
};
inline void SwCSS1Parser::AddFirstLetterExt( OUString& rFmtName )