Avoid warnings about mismatched format string in wxMSW wxClipboard code.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 23 Jan 2012 11:28:01 +0000 (11:28 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 23 Jan 2012 11:28:01 +0000 (11:28 +0000)
commitfbf9fe29f9895d47cb08b94cda6f1f88c82f35aa
tree0c684ce35cef65ca2d07a3dbbc54db64bd01e460
parenteff97cba045d5d4846b3b8aba38e1c9ba31c26f2
Avoid warnings about mismatched format string in wxMSW wxClipboard code.

Cast the string offsets to "unsigned" explicitly, even though they can be 64
bit (whereas unsigned is 32 bits) under Win64, the strings we operate with
here shouldn't be more than 4GiB long.

See #13815.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70440 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
src/msw/clipbrd.cpp