#include "wx/utils.h"
#include "wx/intl.h"
-#include "wx/ioswrap.h"
-
-#if wxUSE_IOSTREAMH && wxUSE_STD_IOSTREAM
- #include <iomanip.h>
-#else
- #include <iomanip>
+#if wxUSE_STD_IOSTREAM
+ #include "wx/ioswrap.h"
+ #if wxUSE_IOSTREAMH
+ #include <iomanip.h>
+ #else
+ #include <iomanip>
+ #endif
#endif
#include <string.h>
switch (Precision) {
case wxStdMinSec:
- wxSprintf(timeBuf,_T("%2d:%02d:%02d"),hh,GetMinute(),GetSecond());
+ wxSprintf(timeBuf,wxT("%2d:%02d:%02d"),hh,GetMinute(),GetSecond());
break;
case wxStdMin:
- wxSprintf(timeBuf,_T("%2d:%02d"),hh,GetMinute());
+ wxSprintf(timeBuf,wxT("%2d:%02d"),hh,GetMinute());
break;
}