From d2adaabbfedf4b2365f10ec61927700be855b524 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 1 Jul 1996 19:59:12 +0000 Subject: [PATCH] fixed case where gdd was mapped to a string without cvrt --- src/gdd/dbMapper.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/gdd/dbMapper.cc b/src/gdd/dbMapper.cc index e3efa83fd..b5fc2b1f7 100644 --- a/src/gdd/dbMapper.cc +++ b/src/gdd/dbMapper.cc @@ -4,6 +4,10 @@ // $Id$ // // $Log$ +// Revision 1.4 1996/06/26 21:00:06 jbk +// Fixed up code in aitHelpers, removed unused variables in others +// Fixed potential problem in gddAppTable.cc with the map functions +// // Revision 1.3 1996/06/26 02:42:05 jbk // more correction to the aitString processing - testing menus // @@ -133,7 +137,7 @@ static int mapGddToString(void* v, gdd* dd) { aitFixedString* db = (aitFixedString*)v; aitFixedString* dbx = (aitFixedString*)dd->dataPointer(); int len = dd->getDataSizeElements(); - if(dbx!=db) dd->get(db); + if(dbx!=db) dd->getConvert(*db); return len; }