WaE: conversion from 'unsigned int' to 'sal_Int16', possible loss of data

This commit is contained in:
Tor Lillqvist 2011-10-03 15:03:12 +03:00
parent a3414f43cf
commit cf27d95a6d

View file

@ -318,7 +318,7 @@ struct AttributeListImpl_impl
sal_Int16 AttributeListImpl::getLength(void) throw (RuntimeException)
{
return m_pImpl->vecAttribute.size();
return (sal_Int16) m_pImpl->vecAttribute.size();
}