diff options
author | George Hazan <ghazan@miranda.im> | 2019-06-04 17:07:44 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-06-04 17:07:44 +0300 |
commit | b5b392f1b06f3910ea9cc27b32cb82fea34d6bfa (patch) | |
tree | a60772dca171ad4bfa346bfb1f44017a660191a4 /protocols/Gadu-Gadu/src | |
parent | 3cab1bee6e943c6e6ed6363120b53c33464f3a04 (diff) |
more fixes for #1963
Diffstat (limited to 'protocols/Gadu-Gadu/src')
-rw-r--r-- | protocols/Gadu-Gadu/src/gg_proto.cpp | 1 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/gg_proto.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/protocols/Gadu-Gadu/src/gg_proto.cpp b/protocols/Gadu-Gadu/src/gg_proto.cpp index d4ee9c7520..6554b18d49 100644 --- a/protocols/Gadu-Gadu/src/gg_proto.cpp +++ b/protocols/Gadu-Gadu/src/gg_proto.cpp @@ -112,7 +112,6 @@ GaduProto::~GaduProto() if (modemsg.online) mir_free(modemsg.online);
if (modemsg.away) mir_free(modemsg.away);
if (modemsg.dnd) mir_free(modemsg.dnd);
- if (modemsg.freechat) mir_free(modemsg.freechat);
if (modemsg.invisible) mir_free(modemsg.invisible);
if (modemsg.offline) mir_free(modemsg.offline);
}
diff --git a/protocols/Gadu-Gadu/src/gg_proto.h b/protocols/Gadu-Gadu/src/gg_proto.h index ada0efe1d8..2e9db7566c 100644 --- a/protocols/Gadu-Gadu/src/gg_proto.h +++ b/protocols/Gadu-Gadu/src/gg_proto.h @@ -239,7 +239,6 @@ struct GaduProto : public PROTO<GaduProto> wchar_t *online;
wchar_t *away;
wchar_t *dnd;
- wchar_t *freechat;
wchar_t *invisible;
wchar_t *offline;
};
|