diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-08-12 00:25:29 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-08-13 10:10:37 +0200 |
commit | 24c35276a97a3140b9ac655f4d9f35373b1ad6d1 (patch) | |
tree | 2e4abdbfef1091098a966914d86964e800c7f7a6 /starmath | |
parent | 9662166fb06f18ff73ad4b0d56e7efc8ac1d7c82 (diff) |
warning C4242: '=' : conversion from 'size_t' to 'sal_uInt16'
Change-Id: I892a0418125e9c660577d6acccf78e82c2b7f56c
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/document.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/document.cxx b/starmath/source/document.cxx index 738aac2bbb07..c76b16fcea39 100644 --- a/starmath/source/document.cxx +++ b/starmath/source/document.cxx @@ -1116,7 +1116,7 @@ void SmDocShell::Execute(SfxRequest& rReq) bool (::svl::IUndoManager:: *fnDo)(); - sal_uInt16 nCount; + std::size_t nCount; if( SID_UNDO == rReq.GetSlot() ) { nCount = pTmpUndoMgr->GetUndoActionCount(); |