Attempt to work around wxWidgets CustomLinks/Links incompatibility

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6773 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2016-07-16 12:58:27 +00:00
parent 245c34216c
commit 50a892a084

View file

@ -100,12 +100,19 @@ TAG_HANDLER_BEGIN(A, "A")
TAG_HANDLER_END(A)
#if wxCHECK_VERSION(3, 0, 0)
TAGS_MODULE_BEGIN(Links)
#else
TAGS_MODULE_BEGIN(CustomLinks)
#endif
TAGS_MODULE_ADD(A)
#if wxCHECK_VERSION(3, 0, 0)
TAGS_MODULE_END(Links)
#else
TAGS_MODULE_END(CustomLinks)
#endif
#endif