Tag: cws_src680_dba24d User: fs Date: 2007-11-15 10:06:33+0000 Modified: dba/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx
Log: #i81658# also obtain the type name in ctor File Changes: Directory: /dba/dbaccess/source/ui/tabledesign/ =============================================== File [changed]: FieldDescriptions.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx?r1=1.26&r2=1.26.70.1 Delta lines: +5 -3 ------------------- --- FieldDescriptions.cxx 2007-07-06 08:42:26+0000 1.26 +++ FieldDescriptions.cxx 2007-11-15 10:06:31+0000 1.26.70.1 @@ -4,9 +4,9 @@ * * $RCSfile: FieldDescriptions.cxx,v $ * - * $Revision: 1.26 $ + * $Revision: 1.26.70.1 $ * - * last change: $Author: rt $ $Date: 2007/07/06 08:42:26 $ + * last change: $Author: fs $ $Date: 2007/11/15 10:06:31 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -182,6 +182,8 @@ SetHorJustify( ::dbaui::mapTextJustify(::comphelper::getINT16(xAffectedCol->getPropertyValue(PROPERTY_ALIGN)))); if(xPropSetInfo->hasPropertyByName(PROPERTY_ISAUTOINCREMENT)) SetAutoIncrement(::cppu::any2bool(xAffectedCol->getPropertyValue(PROPERTY_ISAUTOINCREMENT))); + if (xPropSetInfo->hasPropertyByName(PROPERTY_TYPENAME)) + SetTypeName(::comphelper::getString(xAffectedCol->getPropertyValue(PROPERTY_TYPENAME))); } catch(Exception&) { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
