Tag: cws_src680_dba30 User: fs Date: 05/04/06 00:20:52 Modified: /dba/dbaccess/source/core/dataaccess/ documentcontainer.cxx, documentcontainer.hxx, documentdefinition.cxx, documentdefinition.hxx
Log: #i46768# getPropertyDefaultByHandle signature changed File Changes: Directory: /dba/dbaccess/source/core/dataaccess/ ================================================ File [changed]: documentcontainer.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/documentcontainer.cxx?r1=1.12&r2=1.12.2.1 Delta lines: +5 -5 ------------------- --- documentcontainer.cxx 23 Mar 2005 09:47:06 -0000 1.12 +++ documentcontainer.cxx 6 Apr 2005 07:20:48 -0000 1.12.2.1 @@ -2,9 +2,9 @@ * * $RCSfile: documentcontainer.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.12.2.1 $ * - * last change: $Author: vg $ $Date: 2005/03/23 09:47:06 $ + * last change: $Author: fs $ $Date: 2005/04/06 07:20:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -622,9 +622,9 @@ return pContent; } // ----------------------------------------------------------------------------- -Any ODocumentContainer::getPropertyDefaultByHandle( sal_Int32 _nHandle ) const +void ODocumentContainer::getPropertyDefaultByHandle( sal_Int32 _nHandle, Any& _rDefault ) const { - return Any(); + _rDefault.clear(); } // ----------------------------------------------------------------------------- void SAL_CALL ODocumentContainer::commit( ) throw (::com::sun::star::io::IOException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException) File [changed]: documentcontainer.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/documentcontainer.hxx?r1=1.7&r2=1.7.12.1 Delta lines: +4 -4 ------------------- --- documentcontainer.hxx 10 Mar 2005 16:35:14 -0000 1.7 +++ documentcontainer.hxx 6 Apr 2005 07:20:48 -0000 1.7.12.1 @@ -2,9 +2,9 @@ * * $RCSfile: documentcontainer.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.7.12.1 $ * - * last change: $Author: vg $ $Date: 2005/03/10 16:35:14 $ + * last change: $Author: fs $ $Date: 2005/04/06 07:20:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -170,7 +170,7 @@ const ::rtl::OUString& _rName ); - virtual ::com::sun::star::uno::Any getPropertyDefaultByHandle( sal_Int32 _nHandle ) const; + virtual void getPropertyDefaultByHandle( sal_Int32 _nHandle, ::com::sun::star::uno::Any& _rDefault ) const; // OPropertyArrayUsageHelper virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const; File [changed]: documentdefinition.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/documentdefinition.cxx?r1=1.25&r2=1.25.2.1 Delta lines: +5 -5 ------------------- --- documentdefinition.cxx 23 Mar 2005 09:53:43 -0000 1.25 +++ documentdefinition.cxx 6 Apr 2005 07:20:49 -0000 1.25.2.1 @@ -2,9 +2,9 @@ * * $RCSfile: documentdefinition.cxx,v $ * - * $Revision: 1.25 $ + * $Revision: 1.25.2.1 $ * - * last change: $Author: vg $ $Date: 2005/03/23 09:53:43 $ + * last change: $Author: fs $ $Date: 2005/04/06 07:20:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1214,9 +1214,9 @@ } } // ----------------------------------------------------------------------------- -Any ODocumentDefinition::getPropertyDefaultByHandle( sal_Int32 _nHandle ) const +void ODocumentDefinition::getPropertyDefaultByHandle( sal_Int32 _nHandle, Any& _rDefault ) const { - return Any(); + _rDefault.clear(); } // ----------------------------------------------------------------------------- void ODocumentDefinition::fillDocumentInfo(Any& _rInfo) File [changed]: documentdefinition.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/documentdefinition.hxx?r1=1.12&r2=1.12.4.1 Delta lines: +4 -4 ------------------- --- documentdefinition.hxx 18 Mar 2005 16:33:00 -0000 1.12 +++ documentdefinition.hxx 6 Apr 2005 07:20:49 -0000 1.12.4.1 @@ -2,9 +2,9 @@ * * $RCSfile: documentdefinition.hxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.12.4.1 $ * - * last change: $Author: kz $ $Date: 2005/03/18 16:33:00 $ + * last change: $Author: fs $ $Date: 2005/04/06 07:20:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -215,7 +215,7 @@ // OPropertyArrayUsageHelper virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const; - virtual ::com::sun::star::uno::Any getPropertyDefaultByHandle( sal_Int32 _nHandle ) const; + virtual void getPropertyDefaultByHandle( sal_Int32 _nHandle, ::com::sun::star::uno::Any& _rDefault ) const; // helper virtual void SAL_CALL disposing(); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
