diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-04-09 10:24:32 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-04-09 10:27:21 +0100 |
commit | 9ca23ee5e776b80d1e8fcac4c3897cc0d0569bc3 (patch) | |
tree | a570a011eee0a643a2112aa511a8af9e2e0ac251 | |
parent | 542cf6d9eaa7d3a9875e0cd258c883a69577040f (diff) |
make help work again
This is a regression from b248624126c271c88381d3dad6e04fc954f65779 I suspect
there might be more.
Change-Id: I9ffbcfb8d32b0b0b4193a86eee90d0a5f481de11
-rw-r--r-- | framework/source/services/frame.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/appl/sfxhelp.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx index 44d30d03d4de..e651994879fe 100644 --- a/framework/source/services/frame.cxx +++ b/framework/source/services/frame.cxx @@ -1772,7 +1772,7 @@ void SAL_CALL Frame::setLayoutManager(const css::uno::Reference<css::uno::XInter /* SAFE { */ WriteGuard aWriteLock( m_aLock ); - m_xLayoutManager.set(p1, css::uno::UNO_QUERY_THROW); + m_xLayoutManager.set(p1, css::uno::UNO_QUERY); aWriteLock.unlock(); /* } SAFE */ } diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx index d37f618aef3f..fad70466e5fe 100644 --- a/sfx2/source/appl/sfxhelp.cxx +++ b/sfx2/source/appl/sfxhelp.cxx @@ -534,7 +534,7 @@ SfxHelpWindow_Impl* impl_createHelp(Reference< XFrame2 >& rHelpTask , // otherwise - create new help task Reference< XFrame2 > xHelpTask( xDesktop->findFrame( "OFFICE_HELP_TASK", FrameSearchFlag::TASKS | FrameSearchFlag::CREATE), - UNO_QUERY_THROW); + UNO_QUERY); if (!xHelpTask.is()) return 0; @@ -755,7 +755,7 @@ sal_Bool SfxHelp::Start_Impl(const OUString& rURL, const Window* pWindow, const // search must be done here; search one desktop level could return an arbitraty frame Reference< XFrame2 > xHelp( xDesktop->findFrame( "OFFICE_HELP_TASK", FrameSearchFlag::CHILDREN), - UNO_QUERY_THROW); + UNO_QUERY); Reference< XFrame > xHelpContent = xDesktop->findFrame( OUString("OFFICE_HELP"), FrameSearchFlag::CHILDREN); |