diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-09-27 16:31:32 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-09-27 16:31:32 +0000 |
commit | 7b20bdca3b22c66a58b2ecf2735cb32417496681 (patch) | |
tree | 9653fe495a2338586cdaec8ce2aee167ca631608 /protocols/Skype/src/skype_events.cpp | |
parent | 93b1c035da40df23e3eef4a1efd10dfe9c451375 (diff) |
- fixed previous commit issues
git-svn-id: http://svn.miranda-ng.org/main/trunk@1684 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_events.cpp')
-rw-r--r-- | protocols/Skype/src/skype_events.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Skype/src/skype_events.cpp b/protocols/Skype/src/skype_events.cpp index 65d33fa4c4..d899e593b8 100644 --- a/protocols/Skype/src/skype_events.cpp +++ b/protocols/Skype/src/skype_events.cpp @@ -1,18 +1,18 @@ #include "skype_proto.h"
-void IconsLoad();
+//void IconsLoad();
int CSkypeProto::OnModulesLoaded(WPARAM, LPARAM)
{
- IconsLoad();
- HookEvent(ME_OPT_INITIALISE, &CSkypeProto::OnOptionsInit);
+ //IconsLoad();
+ this->HookEvent(ME_OPT_INITIALISE, &CSkypeProto::OnOptionsInit);
return 0;
}
int CSkypeProto::OnPreShutdown(WPARAM, LPARAM)
{
- SetStatus(ID_STATUS_OFFLINE);
+ this->SetStatus(ID_STATUS_OFFLINE);
return 0;
}
|