diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-19 11:02:20 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-19 12:29:52 +0100 |
commit | 3773201d5973d40f0b6a67930adeaed36f1494c9 (patch) | |
tree | d2e5f4f30dad524a1e34467aa5b648c4447b2a16 | |
parent | 6e60a6f97171c0272871d2010a6fceefba38531e (diff) |
-Werror,-Wunused-variable
Change-Id: I46138b946ff38df5366760dbc1999057fee35bd3
-rw-r--r-- | desktop/source/migration/services/oo3extensionmigration.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/desktop/source/migration/services/oo3extensionmigration.cxx b/desktop/source/migration/services/oo3extensionmigration.cxx index 0f039d36b069..18465296783f 100644 --- a/desktop/source/migration/services/oo3extensionmigration.cxx +++ b/desktop/source/migration/services/oo3extensionmigration.cxx @@ -439,8 +439,7 @@ void TmpRepositoryCommandEnv::handle( uno::Reference< task::XInteractionRequest> const & xRequest ) throw ( uno::RuntimeException ) { - uno::Any request( xRequest->getRequest() ); - OSL_ASSERT( request.getValueTypeClass() == uno::TypeClass_EXCEPTION ); + OSL_ASSERT( xRequest->getRequest().getValueTypeClass() == uno::TypeClass_EXCEPTION ); bool approve = true; bool abort = false; |