| commit | 8cd2a372e3867f99b397b9ec089d6e1f7efd1088 | [log] |
|---|---|---|
| author | Matteo Casalin <matteo.casalin@yahoo.com> | Sun Jun 21 10:48:09 2015 +0200 |
| committer | Matteo Casalin <matteo.casalin@yahoo.com> | Sun Jun 21 12:41:52 2015 +0200 |
| tree | 0b09a315733cdb27bcfd2fd2f1af6c2c10fed1d7 | |
| parent | 61609a62a975e105345fcfbe64c7edff551ee1b3 [diff] |
Use more proper integer types Change-Id: I33bbe7bf21a0758b9f59d78c8e2a32936f845eac
diff --git a/sw/source/filter/ww8/rtfexport.cxx b/sw/source/filter/ww8/rtfexport.cxx index ac6f2f6..8fec63d 100644 --- a/sw/source/filter/ww8/rtfexport.cxx +++ b/sw/source/filter/ww8/rtfexport.cxx
@@ -1113,7 +1113,7 @@ sal_uInt16 RtfExport::GetRedline(const OUString& rAuthor) if (i != m_aRedlineTable.end()) return i->second; int nId = m_aRedlineTable.size(); const sal_uInt16 nId = static_cast<sal_uInt16>(m_aRedlineTable.size()); m_aRedlineTable.insert(std::pair<OUString,sal_uInt16>(rAuthor,nId)); return nId; }