summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlftn.cxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2015-06-01 01:14:07 +0200
committerMatteo Casalin <matteo.casalin@yahoo.com>2015-06-01 01:18:18 +0200
commite61fcfea5c2a306e44a053976e921160e78917ac (patch)
tree72cf2e2c9d90fe61a16bc7dea741cd76dd0711bf /sw/source/filter/html/htmlftn.cxx
parent8b55fe96cf64c64e4877d0ffa8ea694dc7dc8d17 (diff)
WaE - Fix C4389: ´==´ : signed/unsigned mismatch
Change-Id: I049ca27a0b69887d7ab82312dd30311ddb2bed63
Diffstat (limited to 'sw/source/filter/html/htmlftn.cxx')
-rw-r--r--sw/source/filter/html/htmlftn.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/html/htmlftn.cxx b/sw/source/filter/html/htmlftn.cxx
index e0145c317349..b8eaa264a2fd 100644
--- a/sw/source/filter/html/htmlftn.cxx
+++ b/sw/source/filter/html/htmlftn.cxx
@@ -275,7 +275,7 @@ Writer& OutHTML_SwFormatFootnote( Writer& rWrt, const SfxPoolItem& rHt )
if( rFormatFootnote.IsEndNote() )
{
nPos = rHTMLWrt.pFootEndNotes ? rHTMLWrt.pFootEndNotes->size() : 0;
- OSL_ENSURE( nPos == rHTMLWrt.nFootNote + rHTMLWrt.nEndNote,
+ OSL_ENSURE( nPos == static_cast<size_t>(rHTMLWrt.nFootNote + rHTMLWrt.nEndNote),
"OutHTML_SwFormatFootnote: Position falsch" );
sClass = OOO_STRING_SVTOOLS_HTML_sdendnote_anc;
sFootnoteName = OOO_STRING_SVTOOLS_HTML_sdendnote + OUString::number( (sal_Int32)(++rHTMLWrt.nEndNote) );