diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-09-04 17:56:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-09-04 17:56:11 +0200 |
commit | 31da8163ef96ed8a3bb97c52da94682e474dda55 (patch) | |
tree | 500fd9ca2b9f0b23542e613be3b95e2b0e14bda3 /sw | |
parent | 9738002eca0f7cba337ae856cb5bce8ba93ee293 (diff) |
Some clean up of previous commit
Change-Id: I75a4b2be2fbaf47a2ddb3498dd4e46b1169d47cc
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/vba/vbaselection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/vba/vbaselection.cxx b/sw/source/ui/vba/vbaselection.cxx index 641668166bfd..491a8a6a191f 100644 --- a/sw/source/ui/vba/vbaselection.cxx +++ b/sw/source/ui/vba/vbaselection.cxx @@ -869,7 +869,7 @@ SwVbaSelection::ShapeRange( ) throw (uno::RuntimeException) if ( !xShapes.is() ) { uno::Reference< drawing::XShape > xShape( mxModel->getCurrentSelection(), uno::UNO_QUERY_THROW ); - xShapes.set( drawing::ShapeCollection::create(mxContext), uno::UNO_QUERY_THROW ); + xShapes.set( drawing::ShapeCollection::create(mxContext) ); xShapes->add( xShape ); } |