diff options
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/chat_svc.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/mir_app/src/chat_svc.cpp b/src/mir_app/src/chat_svc.cpp index da27bdd19a..a5850be128 100644 --- a/src/mir_app/src/chat_svc.cpp +++ b/src/mir_app/src/chat_svc.cpp @@ -262,12 +262,8 @@ EXTERN_C MIR_APP_DLL(int) Chat_NewSession(const GCSESSION *gcw) struct ChatConrolParam
{
- ChatConrolParam(const char *_szModule, const wchar_t *_wszId, int _command) :
- szModule(_szModule), wszId(_wszId), command(_command)
- {}
-
- const wchar_t *wszId;
const char *szModule;
+ const wchar_t *wszId;
int command;
};
|