summaryrefslogtreecommitdiff
path: root/vcl/source/gdi
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-10-14 14:44:33 +0200
committerMichael Stahl <mstahl@redhat.com>2014-10-14 15:07:14 +0200
commit616445cde0b594de1e6308944d3743cc64cd2a82 (patch)
treed203447bacb8ec3b9e9a038a8f1fa622cdc9c33b /vcl/source/gdi
parent658f031bb155474fa64e69fb76326b29ef4a642c (diff)
vcl: warning C4717: GetCharCount() recursive on all control paths
Change-Id: Id86dcd2c701510ce15cc2cf71e35c1d908ec6049
Diffstat (limited to 'vcl/source/gdi')
-rw-r--r--vcl/source/gdi/impfont.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/impfont.cxx b/vcl/source/gdi/impfont.cxx
index 7f80a3883af9..354edc10efc8 100644
--- a/vcl/source/gdi/impfont.cxx
+++ b/vcl/source/gdi/impfont.cxx
@@ -416,7 +416,7 @@ bool FontCharMap::IsDefaultMap() const
int FontCharMap::GetCharCount() const
{
- return GetCharCount();
+ return mpImplFontCharMap->mnCharCount;
}
int FontCharMap::CountCharsInRange( sal_UCS4 cMin, sal_UCS4 cMax ) const