diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-09 21:21:08 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-09 21:21:08 +0000 |
commit | 15c3ae7d39013d358ff1b1df8ff04d977e314c30 (patch) | |
tree | efb8e68d623aae9434d2d621ca8f094d153fe54b /plugins/RecentContacts/src/RecentContacts.cpp | |
parent | c137624cb6999b85b67006df9e97226a47df50f8 (diff) |
removed not needed interfaces
git-svn-id: http://svn.miranda-ng.org/main/trunk@3511 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/RecentContacts/src/RecentContacts.cpp')
-rw-r--r-- | plugins/RecentContacts/src/RecentContacts.cpp | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/plugins/RecentContacts/src/RecentContacts.cpp b/plugins/RecentContacts/src/RecentContacts.cpp index acfa00b7e1..65f0e730e2 100644 --- a/plugins/RecentContacts/src/RecentContacts.cpp +++ b/plugins/RecentContacts/src/RecentContacts.cpp @@ -37,15 +37,14 @@ PLUGININFOEX pluginInfo = sizeof(PLUGININFOEX),
"Recent Contacts",
PLUGIN_MAKE_VERSION(0,0,2,0),
- "Adds a menu item in main menu, which open the window with list of last used contacts names,"
- " sorted in order from most recent to least.",
+ "Adds a menu item in main menu, which open the window with list of last used contacts names, sorted in order from most recent to least.",
"ValeraVi, Kildor",
"kostia@ngs.ru",
"© 2005 ValeraVi, © 2009 Kildor",
"http://miranda-ng.org/",
- UNICODE_AWARE, //doesn't replace anything built-in
- { 0x0e5f3b9d, 0xebcd, 0x44d7, {0x93, 0x74, 0xd8, 0xe5, 0xd8, 0x8d, 0xf4, 0xe3}}
- /* 0e5f3b9d-ebcd-44d7-9374-d8e5d88df4e3 */
+ UNICODE_AWARE,
+ // 0e5f3b9d-ebcd-44d7-9374-d8e5d88df4e3
+ {0x0e5f3b9d, 0xebcd, 0x44d7, {0x93, 0x74, 0xd8, 0xe5, 0xd8, 0x8d, 0xf4, 0xe3}}
};
static IconItem icon = { LPGEN("Main icon"), "recent_main", IDI_SHOWRECENT };
@@ -57,10 +56,6 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda /////////////////////////////////////////////////////////////////////////////////////////
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_RECENTCONTACTS, MIID_LAST};
-
-/////////////////////////////////////////////////////////////////////////////////////////
-
void LoadDBSettings()
{
ZeroMemory(&LastUCOpt, sizeof(LastUCOpt));
|