[commit] r1494 - trunk/SDK/BON/Common
GMESRC Repository Notifications
gme-commit at list.isis.vanderbilt.edu
Thu Sep 1 10:02:16 CDT 2011
Author: ksmyth
Date: Thu Sep 1 10:02:15 2011
New Revision: 1494
Log:
Support UNICODE
Modified:
trunk/SDK/BON/Common/Console.h
Modified: trunk/SDK/BON/Common/Console.h
==============================================================================
--- trunk/SDK/BON/Common/Console.h Thu Sep 1 09:47:31 2011 (r1493)
+++ trunk/SDK/BON/Common/Console.h Thu Sep 1 10:02:15 2011 (r1494)
@@ -26,10 +26,10 @@
case MSG_NORMAL:
case MSG_INFO:
case MSG_WARNING:
- _tprintf("%s\n", message);
+ _tprintf(T("%s\n"), message);
break;
case MSG_ERROR:
- _ftprintf(stderr, "%s\n", message);
+ _ftprintf(stderr, _T("%s\n"), message);
break;
}
}
More information about the gme-commit
mailing list