summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-07-16 20:52:07 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-07-16 20:52:07 +0000
commitf2487c29d7a60fc7ebedf9351a63d7b0967ff653 (patch)
tree3631da3b43520a1fefebb08039e43f276e0b9292
parent9f4307445a042608e09384c1da96c3fe417a54f4 (diff)
that crap is not actual anymore
git-svn-id: http://svn.miranda-ng.org/main/trunk@995 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/VersionInfo/main.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/plugins/VersionInfo/main.cpp b/plugins/VersionInfo/main.cpp
index c244ba2db6..53c75be86f 100644
--- a/plugins/VersionInfo/main.cpp
+++ b/plugins/VersionInfo/main.cpp
@@ -81,7 +81,6 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda
extern "C" int __declspec(dllexport) Load(void)
{
-
mir_getLP(&pluginInfo);
InitServices();
@@ -95,21 +94,6 @@ extern "C" int __declspec(dllexport) Load(void)
TCHAR *fileName = NULL;
size_t i = _tcslen(filePath) - 1;
_tcslwr(filePath);
-
- //check that the name begins with svc_
- while ((i > 0) && (filePath[i] != '\\')) { i--; }
- if (i > 0)
- {
- filePath[i] = 0;
- fileName = filePath + i + 1;
-
- if (_tcsstr(fileName, _T("svc_")) != fileName)
- {
- TCHAR buffer[1024];
- mir_sntprintf(buffer, SIZEOF(buffer), TranslateT("Please rename the plugin '%s' to 'svc_vi.dll' to enable service mode functionality."), fileName);
- MessageBox(NULL, buffer, TranslateT("Version Information"), MB_OK | MB_ICONEXCLAMATION);
- }
- }
//Menu item
CLISTMENUITEM mi = { 0 };