Browse Source

* new bug

peter 21 years ago
parent
commit
7e5fa195a3
1 changed files with 23 additions and 0 deletions
  1. 23 0
      tests/webtbf/tw3116.pp

+ 23 - 0
tests/webtbf/tw3116.pp

@@ -0,0 +1,23 @@
+{ %fail }
+
+{ Source provided for Free Pascal Bug Report 3116 }
+{ Submitted by "Maarten Bekers" on  2004-05-23 }
+{ e-mail: [email protected] }
+program eleforum;
+
+type
+  Longint       = Integer[4];
+
+
+const
+  forum_DiffFromLocal                = -2;
+
+
+function forum_ConvertDateToUser(ThisDate: Longint): Longint;
+begin
+  if forum_DiffFromLocal < 0 then
+    forum_ConvertDateToUser := ThisDate + Abs(forum_DiffFromLocal * 3600)
+      else forum_ConvertDateToUser := ThisDate - Abs(forum_DiffFromLocal * 3600)
+end; { func. forum_ConvertDateToUser }
+
+end. { eleforum }