#include "wx/ioswrap.h"
-#if wxUSE_IOSTREAMH
+#if wxUSE_IOSTREAMH && wxUSE_STD_IOSTREAM
#include <iomanip.h>
#else
#include <iomanip>
/*
if (IsDST()) setError(NIHCL_BADTIME,DEFAULT,
date.dayOfMonth(),date.nameOfMonth(),date.year(),
- h,m,s,(dst?_("DST"):""));
+ h,m,s,(dst?_("DST("):""));
*/
}
sec += TIME_ZONE; // adjust to GMT
switch (Precision) {
case wxStdMinSec:
- wxSprintf(timeBuf,_T("%2d:%02d:%02d"),hh,GetMinute(),GetSecond());
+ wxSprintf(timeBuf,T("%2d:%02d:%02d"),hh,GetMinute(),GetSecond());
break;
case wxStdMin:
- wxSprintf(timeBuf,_T("%2d:%02d"),hh,GetMinute());
+ wxSprintf(timeBuf,T("%2d:%02d"),hh,GetMinute());
break;
}