diff options
author | dartraiden <wowemuh@gmail.com> | 2022-01-26 22:14:02 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2022-01-26 22:14:02 +0300 |
commit | 3a3223801c9c023d2bfa39646cf331cd958269a1 (patch) | |
tree | ca4d6e3ce9469bcb66c6de6af67173b47fe87ddc /plugins/SendScreenshotPlus/src | |
parent | 6bac4c42742aa437c36f4f1b6b363acb671d0776 (diff) |
Addition to the previous commit
Diffstat (limited to 'plugins/SendScreenshotPlus/src')
-rw-r--r-- | plugins/SendScreenshotPlus/src/Main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/SendScreenshotPlus/src/Main.cpp b/plugins/SendScreenshotPlus/src/Main.cpp index 7cae004c7a..1db150cf55 100644 --- a/plugins/SendScreenshotPlus/src/Main.cpp +++ b/plugins/SendScreenshotPlus/src/Main.cpp @@ -8,8 +8,8 @@ Copyright (c) 2000-09 Miranda ICQ/IM project, This file is part of Send Screenshot Plus, a Miranda IM plugin. Copyright (c) 2010 Ing.U.Horn -Parts of this file based on original sorce code -(c) 2004-2006 S�rgio Vieira Rolanski (portet from Borland C++) +Parts of this file based on original source code +(c) 2004-2006 Sérgio Vieira Rolanski (ported from Borland C++) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -210,8 +210,8 @@ int hook_ModulesLoaded(WPARAM, LPARAM) // Netlib register NETLIBUSER nlu = {}; nlu.szSettingsModule = __PLUGIN_NAME; - nlu.szDescriptiveName.a = __PLUGIN_NAME; - nlu.flags = NUF_OUTGOING | NUF_HTTPCONNS; //|NUF_NOHTTPSOPTION; + nlu.szDescriptiveName.w = TranslateT("SendSS"); + nlu.flags = NUF_OUTGOING | NUF_HTTPCONNS | NUF_UNICODE; //|NUF_NOHTTPSOPTION; g_hNetlibUser = Netlib_RegisterUser(&nlu); // load my button class / or use UInfoEx |