git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5129
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// the spec was correct
Set(day, mon, year, hour, min, sec);
+#ifndef __BORLANDC__ // The following line doesn't compile with BC++
MakeTimezone(60*(wxDateTime_t)offset);
+#else
+ wxMessageBox("ParseRfc822Date doesn't with BC++ yet, sorry.");
+#endif
return p;
}
#endif
#if wxUSE_LONGLONG
-
#include "wx/longlong.h"
#include <memory.h> // for memset()
if (tag.HasParam(wxT("SIZE"))) {
long tmp = 0;
- wxChar c = tag.GetParam(wxT("SIZE"))[0];
+ wxChar c = tag.GetParam(wxT("SIZE"))[(unsigned int) 0];
if (tag.ScanParam(wxT("SIZE"), wxT("%li"), &tmp) == 1) {
if (c == '+' || c == '-')
m_WParser -> SetFontSize(oldsize+tmp);