diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-19 08:49:11 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-19 09:55:18 +0000 |
commit | 186dbb68907a2415b8cb2655aa2d1f4850509fb6 (patch) | |
tree | 25fed4018ba0acc6fb7e0c8b8cbb09370e9acf61 /forms/source/runtime | |
parent | 8f2522f931df9f1f24ef7016ee64d75fd23af000 (diff) |
callcatcher: update unused code
Change-Id: If6e0cbf8544ca7a4668cdc67fcf390d8835b7017
Diffstat (limited to 'forms/source/runtime')
-rw-r--r-- | forms/source/runtime/formoperations.cxx | 10 | ||||
-rw-r--r-- | forms/source/runtime/formoperations.hxx | 2 |
2 files changed, 0 insertions, 12 deletions
diff --git a/forms/source/runtime/formoperations.cxx b/forms/source/runtime/formoperations.cxx index cd95d32ffd66..d337a35bf7cf 100644 --- a/forms/source/runtime/formoperations.cxx +++ b/forms/source/runtime/formoperations.cxx @@ -129,18 +129,15 @@ namespace frm { } - FormOperations::~FormOperations() { } - OUString FormOperations::getImplementationName_Static( ) throw(RuntimeException) { return OUString( "com.sun.star.comp.forms.FormOperations" ); } - Sequence< OUString > FormOperations::getSupportedServiceNames_Static( ) throw(RuntimeException) { Sequence< OUString > aNames(1); @@ -148,13 +145,6 @@ namespace frm return aNames; } - - Reference< XInterface > SAL_CALL FormOperations::Create(const Reference< XMultiServiceFactory >& _rxFactory ) - { - return *new FormOperations( comphelper::getComponentContext(_rxFactory) ); - } - - void SAL_CALL FormOperations::initialize( const Sequence< Any >& _arguments ) throw (Exception, RuntimeException, std::exception) { if ( m_bConstructed ) diff --git a/forms/source/runtime/formoperations.hxx b/forms/source/runtime/formoperations.hxx index 7c3e604bc98e..731d4007f604 100644 --- a/forms/source/runtime/formoperations.hxx +++ b/forms/source/runtime/formoperations.hxx @@ -84,8 +84,6 @@ namespace frm // XServiceInfo - static versions static OUString getImplementationName_Static( ) throw(::com::sun::star::uno::RuntimeException); static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static( ) throw(::com::sun::star::uno::RuntimeException); - static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL - Create(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >&); struct MethodAccess { friend class MethodGuard; private: MethodAccess() { } }; |