summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-01-19 09:28:51 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-01-19 09:32:29 +0100
commit8a894b4af476641062bf340a2fb802558bf1cbe3 (patch)
treecb36613f92d7b3dc5156f3be2b436ae1af95845d /vcl
parent5c8e6ccaf6ea7a187e3d16f3d865cbed5eba0874 (diff)
Fix pUnicodes unused
Change-Id: I168c84d6b64fe23c3e93e36aad31f1c74dfd547a
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/pdfwriter_impl.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx
index 4f02f29dcf68..cf2009921f32 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -3190,17 +3190,14 @@ std::map< sal_Int32, sal_Int32 > PDFWriterImpl::emitSystemFont( const PhysicalFo
osl_createTempFile( NULL, NULL, &aTmpName.pData );
sal_Int32 pGlyphIDs[ 256 ];
sal_uInt8 pEncoding[ 256 ];
- sal_Ucs pUnicodes[ 256 ];
sal_Int32 pDuWidths[ 256 ];
memset( pGlyphIDs, 0, sizeof( pGlyphIDs ) );
memset( pEncoding, 0, sizeof( pEncoding ) );
- memset( pUnicodes, 0, sizeof( pUnicodes ) );
memset( pDuWidths, 0, sizeof( pDuWidths ) );
for( sal_Ucs c = 32; c < 256; c++ )
{
- pUnicodes[c] = c;
pEncoding[c] = c;
pGlyphIDs[c] = 0;
if( aUnicodeMap.find( c ) != aUnicodeMap.end() )