diff options
author | George Hazan <ghazan@miranda.im> | 2018-07-15 11:09:25 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-07-15 11:09:25 +0300 |
commit | f6f131ab125696780a30993c56ff825a1d339ef5 (patch) | |
tree | 8fcb837f56c7cb1ba8caa7a4a5b64e5497143d35 /plugins/WebView/src/webview.cpp | |
parent | a32f58e73573f87c820784287b63cac76b42ae06 (diff) |
fixes #1495 (WebView: radioboxes behaviour)
Diffstat (limited to 'plugins/WebView/src/webview.cpp')
-rw-r--r-- | plugins/WebView/src/webview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/WebView/src/webview.cpp b/plugins/WebView/src/webview.cpp index 7ec393d3fc..d00e473a66 100644 --- a/plugins/WebView/src/webview.cpp +++ b/plugins/WebView/src/webview.cpp @@ -301,7 +301,7 @@ static int OptInitialise(WPARAM wParam, LPARAM) // if popup service exists
if ((ServiceExists(MS_POPUP_ADDPOPUPT))) {
odp.pszTemplate = MAKEINTRESOURCEA(IDD_POPUP);
- odp.szGroup.w = LPGENW("Popups");
+ odp.szGroup.a = LPGEN("Popups");
odp.pfnDlgProc = DlgPopUpOpts;
g_plugin.addOptions(wParam, &odp);
}
|