diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-12-18 20:03:40 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-12-18 20:03:40 +0000 |
commit | a76ced5d4ff852dcbe7a96824ca1bb6dc219a1fd (patch) | |
tree | b8f48fe0e7aed33c9a7cf48800bd351f4cf3c50b /protocols/Skype/src/skype_events.cpp | |
parent | b218fc95603571df3e9a6181d7e0de7f37e3bcc4 (diff) |
- first approach of group chat support
git-svn-id: http://svn.miranda-ng.org/main/trunk@2764 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_events.cpp')
-rw-r--r-- | protocols/Skype/src/skype_events.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/Skype/src/skype_events.cpp b/protocols/Skype/src/skype_events.cpp index 8b99ec5219..8ceb136173 100644 --- a/protocols/Skype/src/skype_events.cpp +++ b/protocols/Skype/src/skype_events.cpp @@ -2,8 +2,10 @@ int CSkypeProto::OnModulesLoaded(WPARAM, LPARAM)
{
+ this->RegisterChat();
this->HookEvent(ME_OPT_INITIALISE, &CSkypeProto::OnOptionsInit);
this->HookEvent(ME_USERINFO_INITIALISE, &CSkypeProto::OnUserInfoInit);
+
this->login = ::DBGetString(NULL, this->m_szModuleName, "sid");
this->rememberPassword = this->GetSettingByte("RememberPassword") > 0;
|