summaryrefslogtreecommitdiff
path: root/yapp/popup_history_dlg.cpp
diff options
context:
space:
mode:
author(no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10>2009-03-31 05:16:22 +0000
committer(no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10>2009-03-31 05:16:22 +0000
commitf8840b16acaa5cb11a4440ea62a96731a24f4d6e (patch)
treef0e38ae1106bf095e1129231693ef4b79c94de3a /yapp/popup_history_dlg.cpp
parent8f7401d0d32b864e7c1efbe696fb60d010f001bb (diff)
x64 port
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@448 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'yapp/popup_history_dlg.cpp')
-rw-r--r--yapp/popup_history_dlg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yapp/popup_history_dlg.cpp b/yapp/popup_history_dlg.cpp
index 2ab979b..b5673c7 100644
--- a/yapp/popup_history_dlg.cpp
+++ b/yapp/popup_history_dlg.cpp
@@ -496,7 +496,7 @@ void CopyPopupDataToClipboard(HWND hList, int selection)
if (found)
{
EmptyClipboard();
- int len = _tcslen(buffer);
+ int len = (int)_tcslen(buffer);
HANDLE hData = GlobalAlloc(GMEM_MOVEABLE, (len + 2) * sizeof(TCHAR));
clipboard = (TCHAR *) GlobalLock(hData);