summaryrefslogtreecommitdiff
path: root/plugins/Popup/src
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2022-09-01 02:15:36 +0300
committerdartraiden <wowemuh@gmail.com>2022-09-01 02:15:36 +0300
commit28ced83d8dc66de5c964cf4f2e72d591586f396d (patch)
treea6a11427f33172f2cc2f1ab0e5c1a2d51554690f /plugins/Popup/src
parentf787825fea601eaece7f20ad11a444c1766bcb2e (diff)
Fix addons URL
Diffstat (limited to 'plugins/Popup/src')
-rw-r--r--plugins/Popup/src/opt_skins.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Popup/src/opt_skins.cpp b/plugins/Popup/src/opt_skins.cpp
index e62c48909a..6d75d9e863 100644
--- a/plugins/Popup/src/opt_skins.cpp
+++ b/plugins/Popup/src/opt_skins.cpp
@@ -386,7 +386,7 @@ INT_PTR CALLBACK DlgProcPopSkinsOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPAR
break;
case IDC_GETSKINS:
- Utils_OpenUrl("https://miranda-ng.org/addons/category/13");
+ Utils_OpenUrl("https://miranda-ng.org/tags/popup-plus/");
break;
case IDC_BTN_RELOAD:
@@ -400,7 +400,7 @@ INT_PTR CALLBACK DlgProcPopSkinsOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPAR
}
ListBox_SetCurSel(hCtrl, ListBox_FindString(hCtrl, 0, PopupOptions.SkinPack));
- // make shure we have select skin (ListBox_SetCurSel may be fail)
+ // make sure we have select skin (ListBox_SetCurSel may be fail)
wchar_t szNewSkin[128];
ListBox_GetText(hCtrl, ListBox_GetCurSel(hCtrl), &szNewSkin);
if (mir_wstrcmp(pszOldSkin, szNewSkin) != 0) {