diff options
author | George Hazan <george.hazan@gmail.com> | 2014-05-22 14:31:16 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-05-22 14:31:16 +0000 |
commit | 794b3c318b582abb7eab83dd9a32c9a894048b0b (patch) | |
tree | dd4bc56f8c70d9366295ae5fad9ec18048b55a36 /plugins/SpellChecker/src/options.cpp | |
parent | 6d6d5591b1ee1002ccf1da0f98942f7aa78ccb80 (diff) |
- unused error message removed;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@9277 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SpellChecker/src/options.cpp')
-rw-r--r-- | plugins/SpellChecker/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SpellChecker/src/options.cpp b/plugins/SpellChecker/src/options.cpp index 748e80163e..8ae164d222 100644 --- a/plugins/SpellChecker/src/options.cpp +++ b/plugins/SpellChecker/src/options.cpp @@ -197,7 +197,7 @@ static INT_PTR CALLBACK OptionsDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LP case WM_COMMAND:
if (LOWORD(wParam) == IDC_GETMORE)
- CallService(MS_UTILS_OPENURL, 1, (LPARAM) "http://wiki.services.openoffice.org/wiki/Dictionaries");
+ CallService(MS_UTILS_OPENURL, 1, (LPARAM)"http://wiki.services.openoffice.org/wiki/Dictionaries");
if (LOWORD(wParam) == IDC_DEF_LANG && (HIWORD(wParam) == CBN_SELCHANGE && (HWND)lParam == GetFocus())) {
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
|