summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/rtfexport.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-09-28 09:15:28 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-09-28 14:08:13 +0200
commit4b88f3545c9525146327470ea767041d6de4c7ca (patch)
treefe86ba814d3f31a7ec11e72c5959f516129c751e /sw/source/filter/ww8/rtfexport.hxx
parenta7e4417c630cc672e3d5e3c0638a6a468d38ad95 (diff)
RTF export: various minor cleanups
Change-Id: I6bdbe246bf65dcfa193289210f7c464769d5e2ad Reviewed-on: https://gerrit.libreoffice.org/42887 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/source/filter/ww8/rtfexport.hxx')
-rw-r--r--sw/source/filter/ww8/rtfexport.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/filter/ww8/rtfexport.hxx b/sw/source/filter/ww8/rtfexport.hxx
index 2a28280e0efc..0b58e27392ae 100644
--- a/sw/source/filter/ww8/rtfexport.hxx
+++ b/sw/source/filter/ww8/rtfexport.hxx
@@ -94,7 +94,7 @@ public:
{
/* no-op for rtf, most probably should not even be in MSWordExportBase */
}
- void WriteChar(sal_Unicode) override;
+ void WriteChar(sal_Unicode c) override;
/// Write the numbering table.
void WriteNumbering() override;
@@ -140,18 +140,18 @@ protected:
bool DisallowInheritingOutlineNumbering(const SwFormat& rFormat) override;
/// Output SwTextNode is depending on outline export mode
- void OutputTextNode(SwTextNode&) override;
+ void OutputTextNode(SwTextNode& rNode) override;
/// Output SwEndNode
- void OutputEndNode(const SwEndNode&) override;
+ void OutputEndNode(const SwEndNode& rEndNode) override;
/// Output SwGrfNode
- void OutputGrfNode(const SwGrfNode&) override;
+ void OutputGrfNode(const SwGrfNode& rGrfNode) override;
/// Output SwOLENode
- void OutputOLENode(const SwOLENode&) override;
+ void OutputOLENode(const SwOLENode& rOLENode) override;
- void OutputLinkedOLE(const OUString&) override;
+ void OutputLinkedOLE(const OUString& rLink) override;
void AppendSection(const SwPageDesc* pPageDesc, const SwSectionFormat* pFormat, sal_uLong nLnNum) override;