summaryrefslogtreecommitdiff
path: root/vcl/win
diff options
context:
space:
mode:
authorJesse <jspears@umd.edu>2011-12-14 14:43:58 -0500
committerMichael Meeks <michael.meeks@suse.com>2011-12-15 16:38:50 +0000
commit6a8f6c4b1324e28c598a065683103ac2ef8ea3fc (patch)
treed59cda7401565170e32c7d06af9755f3110651fd /vcl/win
parent63a817d2fb00f248053566c8b8364667432fa8b3 (diff)
Removed extra semicolons
Diffstat (limited to 'vcl/win')
-rw-r--r--vcl/win/source/gdi/salgdi3.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/win/source/gdi/salgdi3.cxx b/vcl/win/source/gdi/salgdi3.cxx
index 8be7a025b19b..cf7941e67805 100644
--- a/vcl/win/source/gdi/salgdi3.cxx
+++ b/vcl/win/source/gdi/salgdi3.cxx
@@ -515,7 +515,7 @@ bool WinGlyphFallbackSubstititution::HasMissingChars( const ImplFontData* pFace,
HFONT hOldFont = ::SelectFont( mhDC, hNewFont );
// read CMAP table to update their pCharMap
- pWinFont->UpdateFromHDC( mhDC );;
+ pWinFont->UpdateFromHDC( mhDC );
// cleanup temporary font
::SelectFont( mhDC, hOldFont );
@@ -1769,7 +1769,7 @@ void WinSalGraphics::GetFontMetric( ImplFontMetricData* pMetric, int nFallbackLe
return;
// device independent font attributes
- pMetric->meFamily = ImplFamilyToSal( aWinMetric.tmPitchAndFamily );;
+ pMetric->meFamily = ImplFamilyToSal( aWinMetric.tmPitchAndFamily );
pMetric->mbSymbolFlag = (aWinMetric.tmCharSet == SYMBOL_CHARSET);
pMetric->meWeight = ImplWeightToSal( aWinMetric.tmWeight );
pMetric->mePitch = ImplMetricPitchToSal( aWinMetric.tmPitchAndFamily );
@@ -2259,7 +2259,7 @@ static bool ImplGetFontAttrFromFile( const String& rFontFileURL,
rDFA.meWidthType = WIDTH_DONTKNOW;
rDFA.meWeight = WEIGHT_DONTKNOW;
rDFA.meItalic = ITALIC_DONTKNOW;
- rDFA.mePitch = PITCH_DONTKNOW;;
+ rDFA.mePitch = PITCH_DONTKNOW;
rDFA.mbSubsettable= true;
rDFA.mbEmbeddable = false;
@@ -2377,7 +2377,7 @@ bool WinSalGraphics::AddTempDevFont( ImplDevFontList* pFontList,
aDFA.meWidthType = WIDTH_DONTKNOW;
aDFA.meWeight = WEIGHT_DONTKNOW;
aDFA.meItalic = ITALIC_DONTKNOW;
- aDFA.mePitch = PITCH_DONTKNOW;;
+ aDFA.mePitch = PITCH_DONTKNOW;
aDFA.mbSubsettable= true;
aDFA.mbEmbeddable = false;