Tag: cws_src680_odbmacros2 User: fs Date: 2007-12-19 19:53:04+0000 Modified: dba/dbaccess/source/ui/browser/dbloader.cxx
Log: #i10000# File Changes: Directory: /dba/dbaccess/source/ui/browser/ =========================================== File [changed]: dbloader.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/browser/dbloader.cxx?r1=1.31.64.3&r2=1.31.64.4 Delta lines: +6 -6 ------------------- --- dbloader.cxx 2007-12-19 13:27:08+0000 1.31.64.3 +++ dbloader.cxx 2007-12-19 19:53:01+0000 1.31.64.4 @@ -4,9 +4,9 @@ * * $RCSfile: dbloader.cxx,v $ * - * $Revision: 1.31.64.3 $ + * $Revision: 1.31.64.4 $ * - * last change: $Author: fs $ $Date: 2007/12/19 13:27:08 $ + * last change: $Author: fs $ $Date: 2007/12/19 19:53:01 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -315,10 +315,10 @@ { Reference<XInitialization > xIni(xController,UNO_QUERY); PropertyValue aFrame(::rtl::OUString::createFromAscii("Frame"),0,makeAny(rFrame),PropertyState_DIRECT_VALUE); - Sequence< Any > aArgs(m_aArgs.getLength()+1); + Sequence< Any > aInitArgs(m_aArgs.getLength()+1); - Any* pBegin = aArgs.getArray(); - Any* pEnd = pBegin + aArgs.getLength(); + Any* pBegin = aInitArgs.getArray(); + Any* pEnd = pBegin + aInitArgs.getLength(); *pBegin <<= aFrame; const PropertyValue* pIter = m_aArgs.getConstArray(); for(++pBegin;pBegin != pEnd;++pBegin,++pIter) @@ -326,7 +326,7 @@ *pBegin <<= *pIter; } - xIni->initialize(aArgs); + xIni->initialize(aInitArgs); } catch(const Exception&) { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
