diff options
-rw-r--r-- | filter/source/msfilter/svdfppt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |