small myGUI patches

tdev

21-01-2009 09:22:47

a collection of patches i needed to do:

mygui_prerequest:
#if MYGUI_COMPILER == MYGUI_COMPILER_MSVC
#define _CRT_SECURE_NO_WARNINGS
#endif

to:
#if MYGUI_COMPILER == MYGUI_COMPILER_MSVC
# ifndef _CRT_SECURE_NO_WARNINGS
# define _CRT_SECURE_NO_WARNINGS
# endif
#endif

(more patches to come if they arise)

Altren

21-01-2009 14:35:12

Thank you. Applied your patch.