diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-03-20 16:50:40 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-03-20 16:50:40 +0100 |
commit | 2c108a29d1ec53aa85cb5b508b8575b67b59628e (patch) | |
tree | adee3383b99a61488848da7c478f898a95c5fc22 /desktop | |
parent | 190b9257367884fa8561410ebe6fb9df7fd9c465 (diff) |
Leftover unused local variable
Change-Id: I402cdcf2c9a78eb40c26c4cd016f603d85a38d39
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/migration/services/oo3extensionmigration.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/desktop/source/migration/services/oo3extensionmigration.cxx b/desktop/source/migration/services/oo3extensionmigration.cxx index 83426b1eec87..4448ac389da0 100644 --- a/desktop/source/migration/services/oo3extensionmigration.cxx +++ b/desktop/source/migration/services/oo3extensionmigration.cxx @@ -308,10 +308,9 @@ void OO3ExtensionMigration::migrateExtension( const ::rtl::OUString& sSourceDir uno::Reference< ucb::XCommandEnvironment > xCmdEnv( static_cast< cppu::OWeakObject* >( pCmdEnv ), uno::UNO_QUERY ); uno::Reference< task::XAbortChannel > xAbortChannel; - uno::Reference< deployment::XPackage > xPackage = - extMgr->addExtension( - sSourceDir, uno::Sequence<beans::NamedValue>(), - "user", xAbortChannel, xCmdEnv ); + extMgr->addExtension( + sSourceDir, uno::Sequence<beans::NamedValue>(), "user", + xAbortChannel, xCmdEnv ); } catch ( css::uno::Exception & e ) { |