diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-07-23 23:03:36 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-07-24 10:58:56 +0200 |
commit | 0de2d916dcee1f3afe0e71c3432b99855cf843f1 (patch) | |
tree | dc6bb8f0b76ddb0bea2f6e5b53763fe5a5c266ff | |
parent | 9c959736caaaab5a757b0a0ff0abb121062483ab (diff) |
filter: that cast is silly
Change-Id: Id3766ccc992934633c77d8e035abd8390ef088cb
-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; } |