From e539b62d19c7373d3b270afe8ef668a87501127f Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 18 Mar 2005 11:53:14 +0000 Subject: [PATCH] + Fixed typo in provided patch --- fcl/db/db.pp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/fcl/db/db.pp b/fcl/db/db.pp index d67e158234..d2abd48b39 100644 --- a/fcl/db/db.pp +++ b/fcl/db/db.pp @@ -1768,7 +1768,8 @@ begin Result := Items[i]; Break; end; - if Result := Nil Then DatabaseErrorFmt(SIndexNotFound, [IndexName], DataSet); + if (Result=Nil) Then + DatabaseErrorFmt(SIndexNotFound, [IndexName], DataSet); end; function TIndexDefs.FindIndexForFields(const Fields: string): TIndexDef; @@ -1865,7 +1866,10 @@ end. { $Log$ - Revision 1.39 2005-03-18 10:17:34 michael + Revision 1.40 2005-03-18 11:53:14 michael + + Fixed typo in provided patch + + Revision 1.39 2005/03/18 10:17:34 michael + Patch to IndexDefs from Alexandrov Alexandru Revision 1.38 2005/02/16 09:31:58 michael @@ -1890,4 +1894,4 @@ end. - implemented TUpdateMode, TProviderFlags - implemented TIndexDef, TIndexDefs -} +} \ No newline at end of file