diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-01-17 15:28:11 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-01-17 17:01:26 +0100 |
commit | 804e86170ff2570fd3826b4ac26d1c927e751ac3 (patch) | |
tree | 0c24d6df02314b38dc17650030da80419a94b6b2 /sfx2/source | |
parent | 3c8478e26bde41c35c75557d985f5734d8d1a2bd (diff) |
remove unused methods
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/appl/appuno.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sfx2/source/appl/appuno.cxx b/sfx2/source/appl/appuno.cxx index c807c8ae03a0..6026f19a4580 100644 --- a/sfx2/source/appl/appuno.cxx +++ b/sfx2/source/appl/appuno.cxx @@ -2326,7 +2326,6 @@ class NotifyBrokenPackage_Impl : public ::cppu::WeakImplHelper1< ::com::sun::sta public: NotifyBrokenPackage_Impl( ::rtl::OUString aName ); - sal_Bool isAborted(); virtual ::com::sun::star::uno::Any SAL_CALL getRequest() throw( ::com::sun::star::uno::RuntimeException ); virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionContinuation > > SAL_CALL getContinuations() throw( ::com::sun::star::uno::RuntimeException ); @@ -2345,11 +2344,6 @@ NotifyBrokenPackage_Impl::NotifyBrokenPackage_Impl( ::rtl::OUString aName ) m_lContinuations[0] = ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionContinuation >( m_pAbort ); } -sal_Bool NotifyBrokenPackage_Impl::isAborted() -{ - return m_pAbort->wasSelected(); -} - ::com::sun::star::uno::Any SAL_CALL NotifyBrokenPackage_Impl::getRequest() throw( ::com::sun::star::uno::RuntimeException ) { @@ -2374,11 +2368,6 @@ NotifyBrokenPackage::~NotifyBrokenPackage() pImp->release(); } -sal_Bool NotifyBrokenPackage::isAborted() -{ - return pImp->isAborted(); -} - com::sun::star::uno::Reference < ::com::sun::star::task::XInteractionRequest > NotifyBrokenPackage::GetRequest() { return com::sun::star::uno::Reference < ::com::sun::star::task::XInteractionRequest >(pImp); |