diff options
author | George Hazan <ghazan@miranda.im> | 2016-11-01 23:26:59 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-11-01 23:26:59 +0300 |
commit | 88e9a3438231b9dc6e1101e739f55bceead19796 (patch) | |
tree | b531ef8dc61160152d357702094f94485e7227b8 /src/mir_app | |
parent | be8e375ec9335eb717a17239f68c9b40daed8233 (diff) |
StdChat merged with StdMsg
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/newplugins.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mir_app/src/newplugins.cpp b/src/mir_app/src/newplugins.cpp index fda3a1c558..d5d197162d 100644 --- a/src/mir_app/src/newplugins.cpp +++ b/src/mir_app/src/newplugins.cpp @@ -46,7 +46,6 @@ LIST<pluginEntry> /////////////////////////////////////////////////////////////////////////////////////////
MUUID miid_last = MIID_LAST;
-MUUID miid_chat = MIID_CHAT;
MUUID miid_srmm = MIID_SRMM;
MUUID miid_clist = MIID_CLIST;
MUUID miid_database = MIID_DATABASE;
@@ -139,8 +138,7 @@ static MuuidReplacement pluginDefault[] = { MIID_USERONLINE, L"stduseronline", NULL }, // 8
{ MIID_SRAWAY, L"stdaway", NULL }, // 9
{ MIID_CLIST, L"stdclist", NULL }, // 10
- { MIID_CHAT, L"stdchat", NULL }, // 11
- { MIID_SRMM, L"stdmsg", NULL } // 12
+ { MIID_SRMM, L"stdmsg", NULL } // 11
};
int getDefaultPluginIdx(const MUUID &muuid)
@@ -162,7 +160,7 @@ int LoadStdPlugins() return 1;
}
- if (pluginDefault[12].pImpl == NULL)
+ if (pluginDefault[11].pImpl == NULL)
MessageBox(NULL, TranslateT("No messaging plugins loaded. Please install/enable one of the messaging plugins, for instance, \"StdMsg.dll\""), L"Miranda NG", MB_OK | MB_ICONWARNING);
return 0;
|