summaryrefslogtreecommitdiff
path: root/vcl/source/font/font.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/font/font.cxx')
-rw-r--r--vcl/source/font/font.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/font/font.cxx b/vcl/source/font/font.cxx
index 4dc242e7abbd..3214652064f4 100644
--- a/vcl/source/font/font.cxx
+++ b/vcl/source/font/font.cxx
@@ -559,7 +559,6 @@ namespace
bool identifyType1Font( const char* i_pBuffer, sal_uInt32 i_nSize, Font& o_rResult )
{
- bool bResult = false;
// might be a type1, find eexec
const char* pStream = i_pBuffer;
const char* const pExec = "eexec";
@@ -639,7 +638,7 @@ namespace
o_rResult.SetPitch( PITCH_VARIABLE );
}
}
- return bResult;
+ return false;
}
}