diff options
author | dartraiden <wowemuh@gmail.com> | 2022-01-24 17:50:56 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2022-01-24 17:50:56 +0300 |
commit | dae0eee5cac2a349102d78f71c03686a83866bb7 (patch) | |
tree | c850313ed2647b17847543d7564a810755abfd29 /protocols/ICQCorp/src | |
parent | 41ae1ce5bec8ba343750345972b26770129d81f8 (diff) |
We do not need to translate account names
Diffstat (limited to 'protocols/ICQCorp/src')
-rw-r--r-- | protocols/ICQCorp/src/corp.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/protocols/ICQCorp/src/corp.cpp b/protocols/ICQCorp/src/corp.cpp index f848fb257c..69c777089b 100644 --- a/protocols/ICQCorp/src/corp.cpp +++ b/protocols/ICQCorp/src/corp.cpp @@ -61,11 +61,10 @@ extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { MIID_PROTOC int CMPlugin::Load()
{
- CMStringA szDescr(FORMAT, "%s", protoName);
NETLIBUSER nlu = {};
nlu.flags = NUF_INCOMING | NUF_OUTGOING;
nlu.szSettingsModule = protoName;
- nlu.szDescriptiveName.a = szDescr.GetBuffer();
+ nlu.szDescriptiveName.a = protoName;
hNetlibUser = Netlib_RegisterUser(&nlu);
LoadServices();
|