summaryrefslogtreecommitdiff
path: root/filter/source/svg/svgwriter.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-11 13:13:24 +0200
committerNoel Grandin <noel@peralex.com>2016-01-11 13:14:08 +0200
commit7a658373496fc41f40c5019870456dca3a9f6ecc (patch)
treedcb2383ef1c4834f62cb8706128136538f7cbcde /filter/source/svg/svgwriter.hxx
parent92266dd8267481b654efd0dd76f1d145f9dc9e18 (diff)
loplugin:unusedmethods unused return value in filter
Change-Id: I42b24bed84ab9b745041166610732d9a074b5f72
Diffstat (limited to 'filter/source/svg/svgwriter.hxx')
-rw-r--r--filter/source/svg/svgwriter.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/filter/source/svg/svgwriter.hxx b/filter/source/svg/svgwriter.hxx
index a0413bec4ec8..9d9f3e463a46 100644
--- a/filter/source/svg/svgwriter.hxx
+++ b/filter/source/svg/svgwriter.hxx
@@ -211,7 +211,7 @@ class SVGTextWriter
void setTextProperties( const GDIMetaFile& rMtf, sal_uLong nCurAction );
void addFontAttributes( bool bIsTextContainer );
- bool createParagraphEnumeration();
+ void createParagraphEnumeration();
bool nextParagraph();
bool nextTextPortion();
@@ -293,11 +293,10 @@ private:
bool mbIsPlaceholderShape;
- SVGAttributeWriter* ImplAcquireContext()
+ void ImplAcquireContext()
{
maContextStack.push( mpContext = new SVGAttributeWriter( mrExport, mrFontExport ) );
maTextWriter.setContext( mpContext );
- return mpContext;
}
void ImplReleaseContext()
{