From 4f2592ae7f106fa2a894c8170996baae91eff830 Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 2 Oct 1998 09:16:00 +0000 Subject: [PATCH] + Removed objpas from uses clause --- fcl/tests/dparser.pp | 3 +-- fcl/tests/list.pp | 2 +- fcl/tests/mstream.pp | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/fcl/tests/dparser.pp b/fcl/tests/dparser.pp index 6329278c41..d02c131062 100644 --- a/fcl/tests/dparser.pp +++ b/fcl/tests/dparser.pp @@ -1,7 +1,6 @@ Program DParser; -uses ObjPas, - Classes; +uses Classes; var InFile : TFileStream; diff --git a/fcl/tests/list.pp b/fcl/tests/list.pp index 67b3c58a91..f8ac393331 100644 --- a/fcl/tests/list.pp +++ b/fcl/tests/list.pp @@ -1,6 +1,6 @@ Program TestList; -Uses objpas, classes; +Uses classes; const a1 : pchar = '0'; a2 : pchar = '1'; diff --git a/fcl/tests/mstream.pp b/fcl/tests/mstream.pp index 8824bc6830..736f21e597 100644 --- a/fcl/tests/mstream.pp +++ b/fcl/tests/mstream.pp @@ -1,6 +1,6 @@ Program TestStream; -uses objpas, classes; +uses classes; Var Stream : TMemoryStream; S,T : String;