User: rt Date: 06/05/04 01:45:12 Modified: /dba/dbaccess/source/ui/misc/ WCopyTable.cxx
Log: INTEGRATION: CWS dba203c (1.42.48); FILE MERGED 2006/04/27 06:29:34 oj 1.42.48.3: duplicate method 2006/04/24 13:45:38 oj 1.42.48.2: RESYNC: (1.42-1.43); FILE MERGED 2006/04/13 13:55:20 oj 1.42.48.1: #i62797# format regconition corrected File Changes: Directory: /dba/dbaccess/source/ui/misc/ ======================================== File [changed]: WCopyTable.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/misc/WCopyTable.cxx?r1=1.43&r2=1.44 Delta lines: +4 -2 ------------------- --- WCopyTable.cxx 19 Apr 2006 13:23:48 -0000 1.43 +++ WCopyTable.cxx 4 May 2006 08:45:10 -0000 1.44 @@ -782,8 +782,9 @@ // now only the settings are missing if(xColumns->hasByName(pField->GetName())) { - xColumns->getByName(pField->GetName()) >>= xColumn; - if(xColumn.is()) + xColumn.set(xColumns->getByName(pField->GetName()),UNO_QUERY); + OSL_ENSURE(xColumn.is(),"OCopyTableWizard::appendColumns: Column is NULL!"); + if ( xColumn.is() ) dbaui::setColumnUiProperties(xColumn,pField); } else @@ -1202,3 +1203,4 @@ aMsg.Execute(); } // ----------------------------------------------------------------------------- + --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
