Tag: cws_src680_c03v1 User: fs Date: 05/06/21 02:54:22 Modified: /dba/dbaccess/source/core/dataaccess/ documentdefinition.cxx, documentcontainer.cxx
Log: #i50905# OModelImpl::getStorage lost a parameter, which it internally already knows, anyway File Changes: Directory: /dba/dbaccess/source/core/dataaccess/ ================================================ File [changed]: documentdefinition.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/documentdefinition.cxx?r1=1.26&r2=1.26.36.1 Delta lines: +6 -5 ------------------- --- documentdefinition.cxx 18 Apr 2005 08:46:22 -0000 1.26 +++ documentdefinition.cxx 21 Jun 2005 09:54:19 -0000 1.26.36.1 @@ -2,9 +2,9 @@ * * $RCSfile: documentdefinition.cxx,v $ * - * $Revision: 1.26 $ + * $Revision: 1.26.36.1 $ * - * last change: $Author: obo $ $Date: 2005/04/18 08:46:22 $ + * last change: $Author: fs $ $Date: 2005/06/21 09:54:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1314,8 +1314,9 @@ { static const ::rtl::OUString s_sForms = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("forms")); static const ::rtl::OUString s_sReports = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("reports")); - Reference<css::embed::XTransactionListener> xEvt(m_pImpl->m_pDataSource->m_xModel,UNO_QUERY); - return m_pImpl->m_pDataSource ? m_pImpl->m_pDataSource->getStorage(m_bForm ? s_sForms : s_sReports,xEvt) : Reference< XStorage>(); + return m_pImpl->m_pDataSource + ? m_pImpl->m_pDataSource->getStorage( m_bForm ? s_sForms : s_sReports ) + : Reference< XStorage>(); } // ----------------------------------------------------------------------------- sal_Bool ODocumentDefinition::isModified() File [changed]: documentcontainer.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/documentcontainer.cxx?r1=1.12&r2=1.12.54.1 Delta lines: +6 -5 ------------------- --- documentcontainer.cxx 23 Mar 2005 09:47:06 -0000 1.12 +++ documentcontainer.cxx 21 Jun 2005 09:54:19 -0000 1.12.54.1 @@ -2,9 +2,9 @@ * * $RCSfile: documentcontainer.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.12.54.1 $ * - * last change: $Author: vg $ $Date: 2005/03/23 09:47:06 $ + * last change: $Author: fs $ $Date: 2005/06/21 09:54:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -663,8 +663,9 @@ { static const ::rtl::OUString s_sForms = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("forms")); static const ::rtl::OUString s_sReports = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("reports")); - Reference<XTransactionListener> xEvt(m_pImpl->m_pDataSource->m_xModel,UNO_QUERY); - return m_pImpl->m_pDataSource ? m_pImpl->m_pDataSource->getStorage(m_bFormsContainer ? s_sForms : s_sReports,xEvt) : Reference< XStorage>(); + return m_pImpl->m_pDataSource + ? m_pImpl->m_pDataSource->getStorage( m_bFormsContainer ? s_sForms : s_sReports ) + : Reference< XStorage>(); } // ----------------------------------------------------------------------------- sal_Bool ODocumentContainer::approveNewObject(const ::rtl::OUString& _sName,const Reference< XContent >& _rxObject) const --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
