Tag: cws_src680_dba24c User: fs Date: 2007-10-22 10:27:34+0000 Modified: dba/dbaccess/source/core/dataaccess/ModelImpl.cxx dba/dbaccess/source/core/dataaccess/ModelImpl.hxx
Log: #i52527#/#i73705#: checkForBrokenScriptingSignature->showBrokenSignatureWarning File Changes: Directory: /dba/dbaccess/source/core/dataaccess/ ================================================ File [changed]: ModelImpl.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/ModelImpl.cxx?r1=1.19.22.1&r2=1.19.22.2 Delta lines: +4 -5 ------------------- --- ModelImpl.cxx 2007-10-22 08:24:28+0000 1.19.22.1 +++ ModelImpl.cxx 2007-10-22 10:27:31+0000 1.19.22.2 @@ -4,9 +4,9 @@ * * $RCSfile: ModelImpl.cxx,v $ * - * $Revision: 1.19.22.1 $ + * $Revision: 1.19.22.2 $ * - * last change: $Author: fs $ $Date: 2007/10/22 08:24:28 $ + * last change: $Author: fs $ $Date: 2007/10/22 10:27:31 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -986,10 +986,9 @@ } // ----------------------------------------------------------------------------- -bool ODatabaseModelImpl::checkForBrokenScriptingSignatures( const Reference< XInteractionHandler >& /*_rxInteraction*/ ) +void ODatabaseModelImpl::showBrokenSignatureWarning( const Reference< XInteractionHandler >& /*_rxInteraction*/ ) const { - // no support for signatures at the moment, so they're not broken - return false; + OSL_ENSURE( false, "ODatabaseModelImpl::showBrokenSignatureWarning: signatures can't be broken - we do not support them!" ); } // ----------------------------------------------------------------------------- File [changed]: ModelImpl.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/ModelImpl.hxx?r1=1.15.22.1&r2=1.15.22.2 Delta lines: +3 -3 ------------------- --- ModelImpl.hxx 2007-10-22 08:24:28+0000 1.15.22.1 +++ ModelImpl.hxx 2007-10-22 10:27:31+0000 1.15.22.2 @@ -4,9 +4,9 @@ * * $RCSfile: ModelImpl.hxx,v $ * - * $Revision: 1.15.22.1 $ + * $Revision: 1.15.22.2 $ * - * last change: $Author: fs $ $Date: 2007/10/22 08:24:28 $ + * last change: $Author: fs $ $Date: 2007/10/22 10:27:31 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -348,7 +348,7 @@ virtual bool documentStorageHasMacros() const; virtual ::com::sun::star::uno::Reference< ::com::sun::star::document::XEmbeddedScripts > getEmbeddedDocumentScripts() const; virtual sal_Int16 getScriptingSignatureState() const; - virtual bool checkForBrokenScriptingSignatures( const ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionHandler >& _rxInteraction ); + virtual void showBrokenSignatureWarning( const ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionHandler >& _rxInteraction ) const; private: void impl_construct_nothrow(); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
