From 12edd290f682648a463f08b66a83eda1d6c834e7 Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 17 Oct 1994 11:41:09 +0000 Subject: [PATCH] Corretto errore nella next_match nel caso di relazioni forzate git-svn-id: svn://10.65.10.50/trunk@390 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- include/relation.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/relation.cpp b/include/relation.cpp index 2f8be5c3e..b2392c383 100755 --- a/include/relation.cpp +++ b/include/relation.cpp @@ -1,4 +1,4 @@ -// $Id: relation.cpp,v 1.17 1994-10-12 13:01:03 guy Exp $ +// $Id: relation.cpp,v 1.18 1994-10-17 11:41:09 alex Exp $ // relation.cpp // fv 12/8/93 // relation class for isam files @@ -466,8 +466,8 @@ bool TRelation::next_match(int logicnum, const char* fieldlist, int nkey) if (reldef(j)._forced[kk]) { TFieldref& fl = (TFieldref&)reldef(j)._fields[kk]; - const TFixed_string f_fr(fl.read(from.curr())); - const TFixed_string f_to(fl.read(to.curr())); + const TString f_fr(fl.read(from.curr())); + const TString f_to(fl.read(to.curr())); ok = (f_fr == f_to); }