summaryrefslogtreecommitdiff
path: root/desktop/source/migration/services
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-03-20 16:50:40 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-03-20 16:50:40 +0100
commit2c108a29d1ec53aa85cb5b508b8575b67b59628e (patch)
treeadee3383b99a61488848da7c478f898a95c5fc22 /desktop/source/migration/services
parent190b9257367884fa8561410ebe6fb9df7fd9c465 (diff)
Leftover unused local variable
Change-Id: I402cdcf2c9a78eb40c26c4cd016f603d85a38d39
Diffstat (limited to 'desktop/source/migration/services')
-rw-r--r--desktop/source/migration/services/oo3extensionmigration.cxx7
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 )
{