diff options
author | aunsane <aunsane@gmail.com> | 2017-12-21 16:39:10 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-12-21 16:39:10 +0300 |
commit | a25497f31ef6f49d65eeeb61b38fed6e5710b230 (patch) | |
tree | df40719a8531178c210151a4ae51b92be9c028c9 /protocols/Tox/src | |
parent | 70c13e5c4475aedd296c51e68070e85096eb4f39 (diff) |
Tox: removed unneeded check fot libtox version
Diffstat (limited to 'protocols/Tox/src')
-rw-r--r-- | protocols/Tox/src/main.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/protocols/Tox/src/main.cpp b/protocols/Tox/src/main.cpp index 3d40928abf..99cd7607a1 100644 --- a/protocols/Tox/src/main.cpp +++ b/protocols/Tox/src/main.cpp @@ -51,14 +51,6 @@ int OnModulesLoaded(WPARAM, LPARAM) extern "C" int __declspec(dllexport) Load(void) { - if (!TOX_VERSION_IS_ABI_COMPATIBLE()) - { - wchar_t message[100]; - mir_snwprintf(message, TranslateT("Current version of plugin is support Tox API version %i.%i.%i which is incompatible with libtox.mir"), TOX_VERSION_MAJOR, TOX_VERSION_MINOR, TOX_VERSION_PATCH); - CToxProto::ShowNotification(message, MB_ICONERROR); - return 2; - } - mir_getLP(&pluginInfo); pci = Chat_GetInterface(); pcli = Clist_GetInterface(); |