summaryrefslogtreecommitdiff
path: root/plugins/PasteIt/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2022-01-24 18:24:16 +0300
committerGeorge Hazan <ghazan@miranda.im>2022-01-24 18:24:16 +0300
commitece3c2433832d935c0634a72bac1a7b948b04b44 (patch)
treeb93092dd39f076f8b764d596f2f4fe9381d2e530 /plugins/PasteIt/src
parentdae0eee5cac2a349102d78f71c03686a83866bb7 (diff)
compilation fix
Diffstat (limited to 'plugins/PasteIt/src')
-rw-r--r--plugins/PasteIt/src/PasteIt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/PasteIt/src/PasteIt.cpp b/plugins/PasteIt/src/PasteIt.cpp
index ec291aae07..9b757bb450 100644
--- a/plugins/PasteIt/src/PasteIt.cpp
+++ b/plugins/PasteIt/src/PasteIt.cpp
@@ -352,9 +352,9 @@ int CMPlugin::Load()
g_plugin.registerIcon(LPGEN("Paste It"), iconList);
NETLIBUSER nlu = {};
- nlu.flags = NUF_UNICODE | NUF_OUTGOING | NUF_HTTPCONNS;
+ nlu.flags = NUF_OUTGOING | NUF_HTTPCONNS;
nlu.szSettingsModule = MODULENAME;
- nlu.szDescriptiveName.w = MODULENAME;
+ nlu.szDescriptiveName.a = MODULENAME;
g_hNetlibUser = Netlib_RegisterUser(&nlu);
pasteToWebs[0] = new PasteToWeb1();