From cd0de3bd2668294ab3174d3b5f032fefc25fa0e8 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 8 May 2014 22:48:01 +0300 Subject: Fix code style in utils. --- src/utils/copynpaste.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/utils/copynpaste.cpp') diff --git a/src/utils/copynpaste.cpp b/src/utils/copynpaste.cpp index 16c9f8958..e4f109d5a 100644 --- a/src/utils/copynpaste.cpp +++ b/src/utils/copynpaste.cpp @@ -81,7 +81,7 @@ bool retrieveBuffer(std::string& text, size_t& pos) if (data) { - const int len = WideCharToMultiByte(CP_UTF8, 0, data, -1, + const size_t len = WideCharToMultiByte(CP_UTF8, 0, data, -1, nullptr, 0, nullptr, nullptr); if (len > 0) { @@ -91,7 +91,7 @@ bool retrieveBuffer(std::string& text, size_t& pos) static_cast(temp), len, nullptr, nullptr)) { text.insert(pos, static_cast(temp)); - pos += len-1; + pos += len - 1; } free(temp); ret = true; @@ -128,7 +128,7 @@ bool sendBuffer(std::string& text) return false; HANDLE h = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, - wCharsLen * sizeof(WCHAR)); + static_cast(wCharsLen) * sizeof(WCHAR)); WCHAR *const out = static_cast(GlobalLock(h)); MultiByteToWideChar(CP_UTF8, 0, text.c_str(), -1, out, wCharsLen); -- cgit v1.2.3-60-g2f50