diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-17 09:24:47 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-17 11:44:56 +0000 |
commit | 0f46d90621eb5af6548ec6e9933b3a041728bd4e (patch) | |
tree | 00dc05ddcb932d7b4ee18172a77bf8dc4fd8fbb6 /dbaccess | |
parent | 1e33cd8355eb1d856a1439b4a095e379b3acf0bd (diff) |
callcatcher: update unused code
Change-Id: I08e99a019fd2ec16e2c995035e4bcc09678ef92b
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/RowSet.cxx | 5 | ||||
-rw-r--r-- | dbaccess/source/core/api/RowSet.hxx | 6 |
2 files changed, 2 insertions, 9 deletions
diff --git a/dbaccess/source/core/api/RowSet.cxx b/dbaccess/source/core/api/RowSet.cxx index a1918d5bd737..90c4f53a5466 100644 --- a/dbaccess/source/core/api/RowSet.cxx +++ b/dbaccess/source/core/api/RowSet.cxx @@ -513,11 +513,6 @@ Sequence< OUString > SAL_CALL ORowSet::getSupportedServiceNames( ) throw(Runtim return getSupportedServiceNames_static(); } -Reference< XInterface > ORowSet::Create(const Reference< XComponentContext >& _rxContext) -{ - return *(new ORowSet( _rxContext )); -} - // OComponentHelper void SAL_CALL ORowSet::disposing() { diff --git a/dbaccess/source/core/api/RowSet.hxx b/dbaccess/source/core/api/RowSet.hxx index 35baaf9a834b..581d42b8674f 100644 --- a/dbaccess/source/core/api/RowSet.hxx +++ b/dbaccess/source/core/api/RowSet.hxx @@ -268,10 +268,8 @@ namespace dbaccess virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; // ::com::sun::star::lang::XServiceInfo - static methods - static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_static(void) throw( ::com::sun::star::uno::RuntimeException ); - static OUString getImplementationName_static(void) 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::uno::XComponentContext >&); + static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_static(void) throw( ::com::sun::star::uno::RuntimeException ); + static OUString getImplementationName_static(void) throw( ::com::sun::star::uno::RuntimeException ); // OComponentHelper virtual void SAL_CALL disposing(void) SAL_OVERRIDE; |