diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-20 15:27:19 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-20 15:27:19 +0300 |
commit | 852b327946b004dc233a6fff4ac523c5ed8b3b45 (patch) | |
tree | 3c8c60d9c06ce949e47a0ee085a2eb1064507ba7 /plugins/CountryFlags/src/main.cpp | |
parent | 8a74e7495ce5ad39de4f5c25121a84d35df90c36 (diff) |
mir_getLP() call went into CMPluginBase::CMPluginBase, thus it's not needed in each plugin. mir_getLP() remains for compatibility with pascal plugins only
Diffstat (limited to 'plugins/CountryFlags/src/main.cpp')
-rw-r--r-- | plugins/CountryFlags/src/main.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/CountryFlags/src/main.cpp b/plugins/CountryFlags/src/main.cpp index ea296ea456..70172ffab3 100644 --- a/plugins/CountryFlags/src/main.cpp +++ b/plugins/CountryFlags/src/main.cpp @@ -53,8 +53,6 @@ extern "C" __declspec(dllexport) const PLUGININFOEX* MirandaPluginInfoEx(DWORD) extern "C" __declspec(dllexport) int Load(void)
{
- mir_getLP(&pluginInfoEx);
-
PrepareBufferedFunctions();
if (CallService(MS_UTILS_GETCOUNTRYLIST, (WPARAM)&nCountriesCount, (LPARAM)&countries))
nCountriesCount = 0;
|