From a85d3756ce4eb0257025b005deb795ba05fd4fda Mon Sep 17 00:00:00 2001 From: Rozhuk Ivan Date: Sat, 13 Dec 2014 08:40:22 +0000 Subject: arg fixes for MS_UTILS_OPENURL service git-svn-id: http://svn.miranda-ng.org/main/trunk@11362 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/modules/icolib/skin2opts.cpp | 2 +- src/modules/langpack/lpopts.cpp | 4 ++-- src/modules/protocols/protoopts.cpp | 2 +- src/modules/skin/sounds.cpp | 2 +- src/modules/utils/enterstring.cpp | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src/modules') diff --git a/src/modules/icolib/skin2opts.cpp b/src/modules/icolib/skin2opts.cpp index 18f40a2215..bc5be1396a 100644 --- a/src/modules/icolib/skin2opts.cpp +++ b/src/modules/icolib/skin2opts.cpp @@ -233,7 +233,7 @@ void UndoSubItemChanges(HWND htv, HTREEITEM hItem, int cmd) static void OpenIconsPage() { - CallService(MS_UTILS_OPENURL, 1, (LPARAM)"http://miranda-ng.org/"); + CallService(MS_UTILS_OPENURL, OUF_NEWWINDOW, (LPARAM)"http://miranda-ng.org/"); } static int OpenPopupMenu(HWND hwndDlg) diff --git a/src/modules/langpack/lpopts.cpp b/src/modules/langpack/lpopts.cpp index 1ecdf11e8e..cb1a8d5a0b 100644 --- a/src/modules/langpack/lpopts.cpp +++ b/src/modules/langpack/lpopts.cpp @@ -126,12 +126,12 @@ INT_PTR CALLBACK DlgLangpackOpt(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lP char buf[512]; mir_strcpy(buf, "mailto:"); if (GetWindowTextA(GetDlgItem(hwndDlg, LOWORD(wParam)), &buf[7], SIZEOF(buf)-7)) - CallService(MS_UTILS_OPENURL, FALSE, (LPARAM)buf); + CallService(MS_UTILS_OPENURL, 0, (LPARAM)buf); } break; case IDC_MORELANG: - CallService(MS_UTILS_OPENURL, TRUE, (LPARAM)"http://wiki.miranda-ng.org/index.php?title=Langpacks/en#Download"); + CallService(MS_UTILS_OPENURL, OUF_NEWWINDOW, (LPARAM)"http://wiki.miranda-ng.org/index.php?title=Langpacks/en#Download"); break; case IDC_LANGUAGES: diff --git a/src/modules/protocols/protoopts.cpp b/src/modules/protocols/protoopts.cpp index c4b8ed5dd3..9114486fa2 100644 --- a/src/modules/protocols/protoopts.cpp +++ b/src/modules/protocols/protoopts.cpp @@ -914,7 +914,7 @@ INT_PTR CALLBACK AccMgrDlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM break; case IDC_LNK_ADDONS: - CallService(MS_UTILS_OPENURL, TRUE, (LPARAM)"http://miranda-ng.org/"); + CallService(MS_UTILS_OPENURL, OUF_NEWWINDOW, (LPARAM)"http://miranda-ng.org/"); break; case IDOK: diff --git a/src/modules/skin/sounds.cpp b/src/modules/skin/sounds.cpp index 67a92df35a..2ab0c21b51 100644 --- a/src/modules/skin/sounds.cpp +++ b/src/modules/skin/sounds.cpp @@ -332,7 +332,7 @@ INT_PTR CALLBACK DlgProcSoundOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM SetDlgItemText(hwndDlg, IDC_LOCATION, strFull); } if (LOWORD(wParam) == IDC_GETMORE) { - CallService(MS_UTILS_OPENURL, 1, (LPARAM)"http://miranda-ng.org/addons/category/14"); + CallService(MS_UTILS_OPENURL, OUF_NEWWINDOW, (LPARAM)"http://miranda-ng.org/addons/category/14"); break; } if (LOWORD(wParam) == IDC_LOCATION) diff --git a/src/modules/utils/enterstring.cpp b/src/modules/utils/enterstring.cpp index 66bdbbbf32..942ba3fc20 100644 --- a/src/modules/utils/enterstring.cpp +++ b/src/modules/utils/enterstring.cpp @@ -209,7 +209,7 @@ static INT_PTR CALLBACK sttEnterStringDlgProc(HWND hwndDlg, UINT msg, WPARAM wPa SendMessage(param->nmhdr.hwndFrom, EM_GETTEXTRANGE, 0, (LPARAM)& tr); char *tmp = mir_t2a(tr.lpstrText); - CallService(MS_UTILS_OPENURL, 1, (LPARAM)tmp); + CallService(MS_UTILS_OPENURL, OUF_NEWWINDOW, (LPARAM)tmp); mir_free(tmp); mir_free(tr.lpstrText); } -- cgit v1.2.3