summaryrefslogtreecommitdiff
path: root/extensions/source/dbpilots/unoautopilot.inl
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/dbpilots/unoautopilot.inl')
-rw-r--r--extensions/source/dbpilots/unoautopilot.inl8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/dbpilots/unoautopilot.inl b/extensions/source/dbpilots/unoautopilot.inl
index 0ab9dc2219f4..d42bfacf1480 100644
--- a/extensions/source/dbpilots/unoautopilot.inl
+++ b/extensions/source/dbpilots/unoautopilot.inl
@@ -30,7 +30,7 @@ OUnoAutoPilot<TYPE, SERVICEINFO>::OUnoAutoPilot(const ::com::sun::star::uno::Ref
//---------------------------------------------------------------------
template <class TYPE, class SERVICEINFO>
-::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL OUnoAutoPilot<TYPE, SERVICEINFO>::getImplementationId( ) throw(::com::sun::star::uno::RuntimeException)
+::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL OUnoAutoPilot<TYPE, SERVICEINFO>::getImplementationId( ) throw(::com::sun::star::uno::RuntimeException, std::exception)
{
static ::cppu::OImplementationId aId;
return aId.getImplementationId();
@@ -45,7 +45,7 @@ template <class TYPE, class SERVICEINFO>
//---------------------------------------------------------------------
template <class TYPE, class SERVICEINFO>
-::rtl::OUString SAL_CALL OUnoAutoPilot<TYPE, SERVICEINFO>::getImplementationName() throw(::com::sun::star::uno::RuntimeException)
+::rtl::OUString SAL_CALL OUnoAutoPilot<TYPE, SERVICEINFO>::getImplementationName() throw(::com::sun::star::uno::RuntimeException, std::exception)
{
return getImplementationName_Static();
}
@@ -59,7 +59,7 @@ template <class TYPE, class SERVICEINFO>
//---------------------------------------------------------------------
template <class TYPE, class SERVICEINFO>
-::comphelper::StringSequence SAL_CALL OUnoAutoPilot<TYPE, SERVICEINFO>::getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException)
+::comphelper::StringSequence SAL_CALL OUnoAutoPilot<TYPE, SERVICEINFO>::getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException, std::exception)
{
return getSupportedServiceNames_Static();
}
@@ -73,7 +73,7 @@ template <class TYPE, class SERVICEINFO>
//---------------------------------------------------------------------
template <class TYPE, class SERVICEINFO>
-::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL OUnoAutoPilot<TYPE, SERVICEINFO>::getPropertySetInfo() throw(::com::sun::star::uno::RuntimeException)
+::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL OUnoAutoPilot<TYPE, SERVICEINFO>::getPropertySetInfo() throw(::com::sun::star::uno::RuntimeException, std::exception)
{
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > xInfo( createPropertySetInfo( getInfoHelper() ) );
return xInfo;
9eea3515a988630b74708a43'>loplugin:stringconstant handle calls to constructors with one argNoel Grandin 2017-01-31a whole bunch of SAL_WARN_UNUSEDNoel Grandin 2017-01-28loplugin:stringconstant check for unnecessary OUString constructor..Noel Grandin 2017-01-26Remove dynamic exception specificationsStephan Bergmann 2017-01-19New loplugin:dynexcspec: Add @throws documentation, cppuhelperStephan Bergmann 2017-01-19these used to OSL_TRACE, quiten them to SAL_INFOCaolán McNamara 2017-01-18-Werror=unused-function (DISABLE_DYNLOADING)Stephan Bergmann 2017-01-17cppuhelper: implement environment mapping for constructor functionsMichael Stahl 2016-12-15teach sallogareas plugin to catch inconsistenciesNoel Grandin 2016-12-13OSL_TRACE->SAL in chart2..ooxNoel Grandin 2016-12-07Remove dead test codeStephan Bergmann 2016-12-07tdf#88206 replace cppu::WeakImplHelper* in cppuhelperJochen Nitschke 2016-11-28loplugin:unnecessaryoverride (dtors) in cppuhelperStephan Bergmann 2016-11-10loplugin:expandablemethods in comphelper..cppuhelperNoel Grandin 2016-11-02Improve some error reportingStephan Bergmann 2016-10-18replace <<= with assign for <<= with rhs AnyJochen Nitschke 2016-10-16clang-cl loplugin: cppuhelperStephan Bergmann 2016-09-20[API CHANGE] Remove HAVE_GCC_VISIBILITY_FEATURE, always trueStephan Bergmann 2016-09-19cid#1371142: Move semantics for css::uno::WeakReferenceHelperStephan Bergmann 2016-09-13loplugin:override: No more need for the "MSVC dtor override" workaroundStephan Bergmann 2016-09-09cppuhelper: fix loplugin:cppunitassertequals warningsMiklos Vajna 2016-07-11getFactory only called with nullptr "key" argumentStephan Bergmann 2016-07-04Fix some spelling errors in comments and stringsOtto Kekäläinen 2016-06-17cppuhelper: fix use-after-free race in OWeakConnectionPointMichael Stahl