diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-31 17:34:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-31 17:34:45 +0000 |
commit | 9f32f113a011e34338b76eef83da6f006d528e61 (patch) | |
tree | e5b37d4a1c7073288556b7e2526561230acf96d9 /plugins/SecureIM/src/main.cpp | |
parent | d57b6799dac75f3c428393666d079fe59361c4b5 (diff) |
fixes for the file sending
git-svn-id: http://svn.miranda-ng.org/main/trunk@13940 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/src/main.cpp')
-rw-r--r-- | plugins/SecureIM/src/main.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/SecureIM/src/main.cpp b/plugins/SecureIM/src/main.cpp index feb7457e77..3c77fe47c2 100644 --- a/plugins/SecureIM/src/main.cpp +++ b/plugins/SecureIM/src/main.cpp @@ -221,7 +221,6 @@ static int onModulesLoaded(WPARAM, LPARAM) HookEvent(ME_OPT_INITIALISE, onRegisterOptions);
if (bPopupExists)
HookEvent(ME_OPT_INITIALISE, onRegisterPopOptions);
- HookEvent(ME_PROTO_ACK, onProtoAck);
HookEvent(ME_DB_CONTACT_SETTINGCHANGED, onContactSettingChanged);
HookEvent(ME_DB_CONTACT_ADDED, onContactAdded);
HookEvent(ME_DB_CONTACT_DELETED, onContactDeleted);
@@ -229,7 +228,6 @@ static int onModulesLoaded(WPARAM, LPARAM) // hook message transport
CreateProtoServiceFunction(MODULENAME, PSR_MESSAGE, onRecvMsg);
CreateProtoServiceFunction(MODULENAME, PSS_MESSAGE, onSendMsg);
- CreateProtoServiceFunction(MODULENAME, PSS_FILE, onSendFile);
// create a menu item for creating a secure im connection to the user.
g_hMenu[0] = AddMenuItem(sim301, 110000, g_hICO[ICO_CM_EST], MODULENAME"/SIM_EST", CMIF_NOTOFFLINE);
|