summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-08-08 22:10:29 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-08-08 22:10:29 +0000
commit37293d2f4ab8a9ed5cb90ae606ff96f01bd72f78 (patch)
treef3665f2999069630841dcbb07279ac2d88c8ff3f /src
parente91de102218d28834e9ef02505b197eb1dbe927a (diff)
finally removing of stdurl
git-svn-id: http://svn.miranda-ng.org/main/trunk@14879 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r--src/mir_app/src/newplugins.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mir_app/src/newplugins.cpp b/src/mir_app/src/newplugins.cpp
index c0d524f4f0..ffbc7f3be0 100644
--- a/src/mir_app/src/newplugins.cpp
+++ b/src/mir_app/src/newplugins.cpp
@@ -165,7 +165,7 @@ int LoadStdPlugins()
return 1;
}
- if (pluginDefault[13].pImpl == NULL)
+ if (pluginDefault[12].pImpl == NULL)
MessageBox(NULL, TranslateT("No messaging plugins loaded. Please install/enable one of the messaging plugins, for instance, \"StdMsg.dll\""), _T("Miranda NG"), MB_OK | MB_ICONWARNING);
return 0;
@@ -594,7 +594,7 @@ static bool loadClistModule(TCHAR* exe, pluginEntry *p)
if (bpi.clistlink() == 0) {
p->bpi = bpi;
p->pclass |= PCLASS_LOADED;
- pluginDefault[11].pImpl = p;
+ pluginDefault[10].pImpl = p;
LoadExtraIconsModule();
return true;
@@ -618,7 +618,7 @@ static pluginEntry* getCListModule(TCHAR *exe)
return p;
}
- MuuidReplacement& stdClist = pluginDefault[11];
+ MuuidReplacement& stdClist = pluginDefault[10];
if (LoadCorePlugin(stdClist)) {
mir_sntprintf(tszFullPath, _countof(tszFullPath), _T("%s\\Core\\%s.dll"), exe, stdClist.stdplugname);
if (loadClistModule(tszFullPath, stdClist.pImpl))