]> git.saurik.com Git - wxWidgets.git/commitdiff
BC++ compialtion fix (?)
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 28 Dec 1999 22:24:44 +0000 (22:24 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 28 Dec 1999 22:24:44 +0000 (22:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5133 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/datetime.cpp

index 0c392aa5abbe3e4428db8990aa1cdb4719e14f54..8ca53f3b258e2b0676ac854b88c2d187d83921b9 100644 (file)
@@ -2295,11 +2295,7 @@ const wxChar *wxDateTime::ParseRfc822Date(const wxChar* date)
 
     // the spec was correct
     Set(day, mon, year, hour, min, sec);
 
     // 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
+    MakeTimezone((wxDateTime_t)(60*offset));
 
     return p;
 }
 
     return p;
 }