diff options
author | George Hazan <ghazan@miranda.im> | 2018-03-28 20:17:40 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-03-28 20:17:40 +0300 |
commit | 380ea39ed5a269e7caf32d9063b389650233fdbe (patch) | |
tree | 320b5284baa6c950f72d037e40cf723b7d541528 /plugins/Import | |
parent | e7b69721b0d390cec3f81f97134a51bfef228cf8 (diff) |
Import now works without accounts' activation, without calling Load() of protocol plugins, just on CMPlugin information
Diffstat (limited to 'plugins/Import')
-rw-r--r-- | plugins/Import/src/import.cpp | 2 | ||||
-rw-r--r-- | plugins/Import/src/version.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/plugins/Import/src/import.cpp b/plugins/Import/src/import.cpp index 6ca7d031bb..8b3a8d4c03 100644 --- a/plugins/Import/src/import.cpp +++ b/plugins/Import/src/import.cpp @@ -521,8 +521,6 @@ bool ImportAccounts(OBJLIST<char> &arSkippedModules) CopySettings(NULL, p->szSrcAcc, NULL, p->pa->szModuleName);
if (bImportSysAll)
arSkippedModules.insert(newStr(p->szSrcAcc));
-
- Proto_ActivateAccount(p->pa);
}
CopySettings(NULL, META_PROTO, NULL, META_PROTO);
diff --git a/plugins/Import/src/version.h b/plugins/Import/src/version.h index a1521e40d1..d5f247b3f0 100644 --- a/plugins/Import/src/version.h +++ b/plugins/Import/src/version.h @@ -1,7 +1,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 95
#define __RELEASE_NUM 8
-#define __BUILD_NUM 4
+#define __BUILD_NUM 5
#include <stdver.h>
|