summaryrefslogtreecommitdiff
path: root/filter/source/svg/svgfontexport.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/svg/svgfontexport.cxx')
-rw-r--r--filter/source/svg/svgfontexport.cxx13
1 files changed, 1 insertions, 12 deletions
diff --git a/filter/source/svg/svgfontexport.cxx b/filter/source/svg/svgfontexport.cxx
index ebc5513cd7b3..121704a93738 100644
--- a/filter/source/svg/svgfontexport.cxx
+++ b/filter/source/svg/svgfontexport.cxx
@@ -22,7 +22,6 @@
#include "svgfilter.hxx"
#include "svgwriter.hxx"
-
#include <vcl/unohelp.hxx>
#include <vcl/font.hxx>
#include <vcl/outdev.hxx>
@@ -31,9 +30,6 @@
static const sal_Int32 nFontEM = 2048;
-// - SVGFontExport -
-
-
SVGFontExport::SVGFontExport( SVGExport& rExport, const ::std::vector< ObjectRepresentation >& rObjects ) :
mrExport( rExport ),
maObjects( rObjects ),
@@ -42,13 +38,11 @@ SVGFontExport::SVGFontExport( SVGExport& rExport, const ::std::vector< ObjectRep
}
-
SVGFontExport::~SVGFontExport()
{
}
-
SVGFontExport::GlyphSet& SVGFontExport::implGetGlyphSet( const vcl::Font& rFont )
{
FontWeight eWeight( WEIGHT_NORMAL );
@@ -75,11 +69,10 @@ SVGFontExport::GlyphSet& SVGFontExport::implGetGlyphSet( const vcl::Font& rFont
}
-
void SVGFontExport::implCollectGlyphs()
{
ScopedVclPtrInstance< VirtualDevice > pVDev;
- ObjectVector::const_iterator aIter( maObjects.begin() );
+ ObjectVector::const_iterator aIter( maObjects.begin() );
pVDev->EnableOutput( false );
@@ -176,7 +169,6 @@ void SVGFontExport::implCollectGlyphs()
}
-
void SVGFontExport::implEmbedFont( const vcl::Font& rFont )
{
if( mrExport.IsEmbedFonts() )
@@ -258,7 +250,6 @@ void SVGFontExport::implEmbedFont( const vcl::Font& rFont )
}
-
void SVGFontExport::implEmbedGlyph( OutputDevice& rOut, const OUString& rCellStr )
{
tools::PolyPolygon aPolyPoly;
@@ -293,7 +284,6 @@ void SVGFontExport::implEmbedGlyph( OutputDevice& rOut, const OUString& rCellStr
}
-
void SVGFontExport::EmbedFonts()
{
implCollectGlyphs();
@@ -331,7 +321,6 @@ void SVGFontExport::EmbedFonts()
}
-
OUString SVGFontExport::GetMappedFontName( const OUString& rFontName ) const
{
sal_Int32 nNextTokenPos( 0 );