summaryrefslogtreecommitdiff
path: root/vcl/quartz/ctfonts.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/quartz/ctfonts.cxx')
-rw-r--r--vcl/quartz/ctfonts.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/quartz/ctfonts.cxx b/vcl/quartz/ctfonts.cxx
index 7b47cfc0f857..584ceaa4a6be 100644
--- a/vcl/quartz/ctfonts.cxx
+++ b/vcl/quartz/ctfonts.cxx
@@ -109,7 +109,7 @@ CoreTextStyle::CoreTextStyle( const FontSelectPattern& rFSD )
#endif
}
-CoreTextStyle::~CoreTextStyle( void )
+CoreTextStyle::~CoreTextStyle()
{
if( mpStyleDict )
CFRelease( mpStyleDict );
@@ -218,7 +218,7 @@ bool CoreTextStyle::GetGlyphOutline( sal_GlyphId aGlyphId, basegfx::B2DPolyPolyg
return true;
}
-PhysicalFontFace* CoreTextFontData::Clone( void ) const
+PhysicalFontFace* CoreTextFontData::Clone() const
{
return new CoreTextFontData( *this);
}
@@ -432,7 +432,7 @@ CoreTextFontData* SystemFontList::GetFontDataFromId( sal_IntPtr nFontId ) const
return (*it).second;
}
-bool SystemFontList::Init( void )
+bool SystemFontList::Init()
{
// enumerate available system fonts
static const int nMaxDictEntries = 8;
@@ -450,7 +450,7 @@ bool SystemFontList::Init( void )
return true;
}
-SystemFontList* GetCoretextFontList( void )
+SystemFontList* GetCoretextFontList()
{
SystemFontList* pList = new SystemFontList();
if( !pList->Init() ) {