From f60842d341a4cdfb3f42c3991ab82ba2922c29ce Mon Sep 17 00:00:00 2001 From: twanvl Date: Sat, 22 Jan 2011 21:31:45 +0000 Subject: [PATCH] no more handle_warning git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1637 0fc631ac-6414-0410-93d0-97cfa31319b6 --- src/main.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 7ff9b274..186a913a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -67,8 +67,9 @@ void nag_about_ascii_version() { info.dwOSVersionInfoSize = sizeof(info); GetVersionEx(&info); if (info.dwMajorVersion >= 5) { - handle_warning(_("This build of Magic Set Editor is intended for Windows 95/98/ME systems.\n") - _("It is recommended that you download the appropriate MSE version for your Windows version.")); + queue_message(MESSAGE_WARNING, + _("This build of Magic Set Editor is intended for Windows 95/98/ME systems.\n") + _("It is recommended that you download the appropriate MSE version for your Windows version.")); } #endif }