diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-05 15:39:50 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-05 15:39:50 +0000 |
commit | 357af8c5a3cf922818ee014a8f2b54a799917eea (patch) | |
tree | 2ed1b38f979d7b3991f9ca9a4103347f2fddfe62 /plugins/LangMan/main.cpp | |
parent | a039e3378554f4f7b12a38722f72dfded2f4b277 (diff) |
removed old PLUGININFO. plugin info cleanup starts
git-svn-id: http://svn.miranda-ng.org/main/trunk@312 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/LangMan/main.cpp')
-rw-r--r-- | plugins/LangMan/main.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/plugins/LangMan/main.cpp b/plugins/LangMan/main.cpp index bcd3dba640..cc023a91fa 100644 --- a/plugins/LangMan/main.cpp +++ b/plugins/LangMan/main.cpp @@ -28,19 +28,13 @@ struct MM_INTERFACE mmi; static HANDLE hHookModulesLoaded;
int hLangpack;
-static char szEmail[100] = PLUGIN_EMAIL;
-
static PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
"Language Pack Manager",
PLUGIN_VERSION,
-#if defined(_DEBUG)
- "Development build not intended for release. ("__DATE__")", /* autotranslated */
-#else
"Helps you manage Language Packs of different languages.", /* autotranslated */
-#endif
"H. Herkenrath",
- szEmail, /* @ will be set later */
+ "hrathh@users.sourceforge.net",
"© 2005-2007 H. Herkenrath",
PLUGIN_WEBSITE,
UNICODE_AWARE,
@@ -98,7 +92,6 @@ extern "C" { __declspec(dllexport) const PLUGININFOEX* MirandaPluginInfoEx(DWORD)
{
- szEmail[PLUGIN_EMAIL_ATT_POS-1] = '@';
return &pluginInfo;
}
|