From 0de2d916dcee1f3afe0e71c3432b99855cf843f1 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Thu, 23 Jul 2015 23:03:36 +0200 Subject: filter: that cast is silly Change-Id: Id3766ccc992934633c77d8e035abd8390ef088cb --- filter/source/msfilter/svdfppt.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filter/source/msfilter/svdfppt.cxx b/filter/source/msfilter/svdfppt.cxx index fa0670309fd4..754bb6cdc7ba 100644 --- a/filter/source/msfilter/svdfppt.cxx +++ b/filter/source/msfilter/svdfppt.cxx @@ -578,7 +578,7 @@ PptFontEntityAtom* SdrEscherImport::GetFontEnityAtom( sal_uInt32 nNum ) const { PptFontEntityAtom* pRetValue = NULL; if (m_pFonts && (nNum < m_pFonts->size())) - pRetValue = (*m_pFonts)[ (sal_uInt16)nNum ].get(); + pRetValue = (*m_pFonts)[ nNum ].get(); return pRetValue; } -- cgit