diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-01-16 21:42:09 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-01-16 21:42:09 +0100 |
commit | 69d91300547f6ed45a9a499ffae71c2c0f91c441 (patch) | |
tree | 7656c6c3581a791407225d384cfda0cea158e0d1 /xmloff | |
parent | 9dfa70c22d4f3ad480ffb98c0c8e1ea40f03dc18 (diff) |
WaE signed/unsigned comparison.
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/txtparae.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx index e32203a6ce59..96316d1968e2 100644 --- a/xmloff/source/text/txtparae.cxx +++ b/xmloff/source/text/txtparae.cxx @@ -856,7 +856,7 @@ void XMLTextParagraphExport::exportListChange( if ( nListLevelsToBeClosed > 0 && pListElements && - pListElements->size() >= ( 2 * nListLevelsToBeClosed ) ) + pListElements->size() >= ( 2 * sal::static_int_cast< sal_uInt16 >(nListLevelsToBeClosed) ) ) { do { for(size_t j = 0; j < 2; ++j) |