summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2011-10-03 15:03:12 +0300
committerTor Lillqvist <tlillqvist@suse.com>2011-10-03 15:04:31 +0300
commitcf27d95a6d508a2b5b3bd9e6ac477a3fbbd28bb1 (patch)
treed01e1fcc6dd8b4698d4757537598785c8c096202 /sax
parenta3414f43cf067d017380a950f69f681557d82151 (diff)
WaE: conversion from 'unsigned int' to 'sal_Int16', possible loss of data
Diffstat (limited to 'sax')
-rw-r--r--sax/test/saxdemo.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sax/test/saxdemo.cxx b/sax/test/saxdemo.cxx
index f8ac35c491a8..bd3e1c0312a8 100644
--- a/sax/test/saxdemo.cxx
+++ b/sax/test/saxdemo.cxx
@@ -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();
}