diff options
author | George Hazan <george.hazan@gmail.com> | 2012-09-25 18:59:47 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-09-25 18:59:47 +0000 |
commit | 2eea33b2dcc64a02461a95b026d01c54c651fe26 (patch) | |
tree | 4e7ac2b3c336ae7e279ebf94a16075e8f422e3aa /src/modules/protocols | |
parent | 27035a4a46167dc714b770c77561f14e8d0b945d (diff) |
protocols are unloadable now
git-svn-id: http://svn.miranda-ng.org/main/trunk@1656 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/protocols')
-rw-r--r-- | src/modules/protocols/protoaccs.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/modules/protocols/protoaccs.cpp b/src/modules/protocols/protoaccs.cpp index 65ad1e3de7..0b31bfab25 100644 --- a/src/modules/protocols/protoaccs.cpp +++ b/src/modules/protocols/protoaccs.cpp @@ -614,15 +614,6 @@ void UnloadAccountsModule() /////////////////////////////////////////////////////////////////////////////////////////
-void KillProtoAccounts(const char *szProtoName)
-{
- for (int i=0; i < accounts.getCount(); i++)
- if ( !strcmp(szProtoName, accounts[i]->szProtoName))
- DeactivateAccount(accounts[i], true, false);
-}
-
-/////////////////////////////////////////////////////////////////////////////////////////
-
void BuildProtoMenus()
{
for (int i=0; i < accounts.getCount(); i++) {
|