summaryrefslogtreecommitdiff
path: root/plugins/CountryFlags
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-26 23:41:55 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-26 23:41:55 +0000
commit25221b7d2afb70f82eb3805330fd39a6f6708049 (patch)
tree6fdd3eb5c5642788e1f8286385b15535f9a7ec16 /plugins/CountryFlags
parentef81e9edc10e2478f514e1fbfb0828ad1e7d8e49 (diff)
mk: removed all LIST_INTERFACE, MI_INTERFACE & UTF8_INTERFACE instances.
all related functions moved to mir_core. git-svn-id: http://svn.miranda-ng.org/main/trunk@644 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CountryFlags')
-rw-r--r--plugins/CountryFlags/main.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/CountryFlags/main.cpp b/plugins/CountryFlags/main.cpp
index af6229b09c..f39a24ace0 100644
--- a/plugins/CountryFlags/main.cpp
+++ b/plugins/CountryFlags/main.cpp
@@ -22,7 +22,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
HINSTANCE hInst;
PLUGINLINK *pluginLink;
-struct MM_INTERFACE mmi;
int nCountriesCount;
struct CountryListEntry *countries;
int hLangpack;
@@ -95,7 +94,7 @@ extern "C" __declspec(dllexport) int Load(PLUGINLINK *link)
/* existance of MS_SYSTEM_GETVERSION and MS_LANGPACK_TRANSLATESTRING
* is checked in MirandaPluginInfo().
- * Not placed in MirandaPluginInfo() to avoid MessageBoxes on plugin options.
+ * Not placed in MirandaPluginInfo() to avoid MessageBoxes on plugin options.
* Using ANSI as LANG_UNICODE might not be supported. */
if(CallService(MS_SYSTEM_GETVERSION,0,0)<NEEDED_MIRANDA_VERSION) {
char szText[256];
@@ -103,7 +102,6 @@ extern "C" __declspec(dllexport) int Load(PLUGINLINK *link)
MessageBoxA(NULL,szText,Translate("Country Flags Plugin"),MB_OK|MB_ICONINFORMATION|MB_SETFOREGROUND|MB_TOPMOST|MB_TASKMODAL);
return 1;
}
- if(mir_getMMI(&mmi)) return 1;
PrepareBufferedFunctions();
InitCountryListExt();