summaryrefslogtreecommitdiff
path: root/sfx2/source/view/ipclient.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-02-14 16:10:07 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-02-15 14:17:33 +0000
commit8b3a9d3055d261a3ba16932bf7f361e0ca5c77c2 (patch)
treeb3ace491d95038fe2ee50f2b602ec790b39af2ec /sfx2/source/view/ipclient.cxx
parent9a7d112603393ad45b71d36860ac7d0d8175c06d (diff)
Some simplifications, using UNO_QUERY_THROW
Change-Id: Ida366e40ade98443019d3c312ae19864f93c9e5e Reviewed-on: https://gerrit.libreoffice.org/34258 Tested-by: Stephan Bergmann <sbergman@redhat.com> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sfx2/source/view/ipclient.cxx')
-rw-r--r--sfx2/source/view/ipclient.cxx21
1 files changed, 6 insertions, 15 deletions
diff --git a/sfx2/source/view/ipclient.cxx b/sfx2/source/view/ipclient.cxx
index 41d6092c3cb6..f35b41aa379c 100644
--- a/sfx2/source/view/ipclient.cxx
+++ b/sfx2/source/view/ipclient.cxx
@@ -214,9 +214,7 @@ void SAL_CALL SfxInPlaceClient_Impl::saveObject()
return;
// the common persistence is supported by objects and links
- uno::Reference< embed::XCommonEmbedPersist > xPersist( m_xObject, uno::UNO_QUERY );
- if ( !xPersist.is() )
- throw uno::RuntimeException();
+ uno::Reference< embed::XCommonEmbedPersist > xPersist( m_xObject, uno::UNO_QUERY_THROW );
uno::Reference< frame::XFrame > xFrame;
uno::Reference< task::XStatusIndicator > xStatusIndicator;
@@ -363,9 +361,7 @@ void SAL_CALL SfxInPlaceClient_Impl::deactivatedUI()
uno::Reference< css::frame::XLayoutManager > SAL_CALL SfxInPlaceClient_Impl::getLayoutManager()
{
- uno::Reference < beans::XPropertySet > xFrame( GetFrame(), uno::UNO_QUERY );
- if ( !xFrame.is() )
- throw uno::RuntimeException();
+ uno::Reference < beans::XPropertySet > xFrame( GetFrame(), uno::UNO_QUERY_THROW );
uno::Reference< css::frame::XLayoutManager > xMan;
try
@@ -436,8 +432,8 @@ void SAL_CALL SfxInPlaceClient_Impl::scrollObject( const awt::Size& /*aOffset*/
void SAL_CALL SfxInPlaceClient_Impl::changedPlacement( const awt::Rectangle& aPosRect )
{
- uno::Reference< embed::XInplaceObject > xInplace( m_xObject, uno::UNO_QUERY );
- if ( !xInplace.is() || !m_pClient || !m_pClient->GetEditWin() || !m_pClient->GetViewShell() )
+ uno::Reference< embed::XInplaceObject > xInplace( m_xObject, uno::UNO_QUERY_THROW );
+ if ( !m_pClient || !m_pClient->GetEditWin() || !m_pClient->GetViewShell() )
throw uno::RuntimeException();
// check if the change is at least one pixel in size
@@ -493,10 +489,7 @@ uno::Reference< util::XCloseable > SAL_CALL SfxInPlaceClient_Impl::getComponent(
throw uno::RuntimeException();
// all the components must implement XCloseable
- uno::Reference< util::XCloseable > xComp( pDocShell->GetModel(), uno::UNO_QUERY );
- if ( !xComp.is() )
- throw uno::RuntimeException();
-
+ uno::Reference< util::XCloseable > xComp( pDocShell->GetModel(), uno::UNO_QUERY_THROW );
return xComp;
}
@@ -526,9 +519,7 @@ void SfxInPlaceClient_Impl::SizeHasChanged()
|| m_xObject->getCurrentState() == embed::EmbedStates::UI_ACTIVE ) )
{
// only possible in active states
- uno::Reference< embed::XInplaceObject > xInplace( m_xObject, uno::UNO_QUERY );
- if ( !xInplace.is() )
- throw uno::RuntimeException();
+ uno::Reference< embed::XInplaceObject > xInplace( m_xObject, uno::UNO_QUERY_THROW );
if ( m_bResizeNoScale )
{