diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-13 22:16:46 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-13 22:16:46 +0000 |
commit | a04043571f2d04ff9d117f921115f97f7bf42870 (patch) | |
tree | 38592b1a7324b6d3d50fe75976db1f73e20f2364 /plugins/CyrTranslit | |
parent | 950917d869583a8e09135c5d7b5b81d98ed1a213 (diff) |
Unicode description is no longer needed in PluginInfo
git-svn-id: http://svn.miranda-ng.org/main/trunk@401 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CyrTranslit')
-rw-r--r-- | plugins/CyrTranslit/main.cpp | 18 | ||||
-rw-r--r-- | plugins/CyrTranslit/plugin.h | 2 |
2 files changed, 1 insertions, 19 deletions
diff --git a/plugins/CyrTranslit/main.cpp b/plugins/CyrTranslit/main.cpp index b35fa92ad0..dc675ff654 100644 --- a/plugins/CyrTranslit/main.cpp +++ b/plugins/CyrTranslit/main.cpp @@ -40,19 +40,6 @@ PLUGININFOEX pluginInfoEx={ MIID_V_CYRTRANSLIT,
};
-PLUGININFO pluginInfo = {
- sizeof(PLUGININFO),
- PLG_SHORTNAME,
- PLG_VERSION,
- PLG_DESCRIPTION,
- PLG_AUTHOR,
- PLG_AUTHOREMAIL,
- PLG_COPYRIGHT,
- PLG_HOMEPAGE,
- PLG_FLAGS,
- PLG_REPLACESDEFMODULE,
-};
-
//------------------------------------------------------------------------------
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
@@ -68,11 +55,6 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda return &pluginInfoEx;
}
-extern "C" __declspec(dllexport) PLUGININFO* MirandaPluginInfo(DWORD mirandaVersion)
-{
- return &pluginInfo;
-}
-
static const MUUID interfaces[] = {MIID_V_CYRTRANSLIT, MIID_LAST};
extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void)
diff --git a/plugins/CyrTranslit/plugin.h b/plugins/CyrTranslit/plugin.h index 95bddb306e..fd76b71391 100644 --- a/plugins/CyrTranslit/plugin.h +++ b/plugins/CyrTranslit/plugin.h @@ -47,7 +47,7 @@ /****** PLUGIN DEFINES *******************************************************/
// pluginInfo:
-#define PLG_SHORTNAME "CyrTranslit (UNICODE)"
+#define PLG_SHORTNAME "CyrTranslit"
#define PLG_VERSION PLUGIN_MAKE_VERSION(1, 0, 3, 0)
#define PLG_DESCRIPTION "Replaces (for the selected contacts only) the Cyrillic letters in the "\
"outgoing messages with the phonetically equivalent Latin letter "\
|