diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2016-01-24 15:00:01 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2016-01-24 15:00:01 +0000 |
commit | a289103f2834d2219799f8d84e29a6d69c00574a (patch) | |
tree | 8f27ff7316e0e089938524c634d3f71320da26ab /plugins/IEView/src/IEView.cpp | |
parent | f732275579a4f029b3d01379112ea9f4d3e1fe1e (diff) |
IEView: fix(?) always true on Win7-
git-svn-id: http://svn.miranda-ng.org/main/trunk@16167 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEView/src/IEView.cpp')
-rw-r--r-- | plugins/IEView/src/IEView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/IEView/src/IEView.cpp b/plugins/IEView/src/IEView.cpp index 3a0ed4bafd..82bd22e9b8 100644 --- a/plugins/IEView/src/IEView.cpp +++ b/plugins/IEView/src/IEView.cpp @@ -1097,7 +1097,7 @@ bool IEView::mouseClick(POINT pt) if ((GetKeyState(VK_SHIFT) & 0x8000) && !(GetKeyState(VK_CONTROL) & 0x8000) && !(GetKeyState(VK_MENU) & 0x8000))
SendMessage(GetParent(hwnd), WM_COMMAND, IDCANCEL, 0);
- Utils_OpenUrlT(url);
+ Utils_OpenUrlW(url);
return true;
}
}
|