summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-07-23 23:03:36 +0200
committerMichael Stahl <mstahl@redhat.com>2015-07-24 10:58:56 +0200
commit0de2d916dcee1f3afe0e71c3432b99855cf843f1 (patch)
treedc6bb8f0b76ddb0bea2f6e5b53763fe5a5c266ff /filter
parent9c959736caaaab5a757b0a0ff0abb121062483ab (diff)
filter: that cast is silly
Change-Id: Id3766ccc992934633c77d8e035abd8390ef088cb
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/svdfppt.cxx2
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;
}