From 03a9f139bd9ea1a4f9096fc982e6b326def58532 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 19 Sep 2012 13:15:15 +0200 Subject: ComponentContext::getUnoContext -> getComponentContext simplification ...and some further clean-up. Change-Id: If5dce53e382b56390c502d0d0d93fc06cbfe33ea --- ucb/source/ucp/odma/odma_content.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ucb/source/ucp/odma/odma_content.cxx') diff --git a/ucb/source/ucp/odma/odma_content.cxx b/ucb/source/ucp/odma/odma_content.cxx index db824294aa10..5ca37c71461f 100644 --- a/ucb/source/ucp/odma/odma_content.cxx +++ b/ucb/source/ucp/odma/odma_content.cxx @@ -40,7 +40,7 @@ #include #include #include -#include +#include #include #include #include @@ -352,7 +352,7 @@ uno::Any SAL_CALL Content::execute( delete m_pContent; m_pContent = new ::ucbhelper::Content (sFileURL,NULL, - comphelper::ComponentContext(m_xSMgr).getUNOContext()); + comphelper::getComponentContext(m_xSMgr)); if(!m_pContent->isDocument()) { rtl::OUString sErrorMsg("File: "); @@ -511,7 +511,7 @@ uno::Any SAL_CALL Content::execute( // Create a new Content object for the "shadow" file // corresponding to the opened document from the DMS. ::ucbhelper::Content aContent(sFileURL.copy(0,nLastIndex),NULL, - comphelper::ComponentContext(m_xSMgr).getUNOContext()); + comphelper::getComponentContext(m_xSMgr)); // aTransferInfo.NameClash = ucb::NameClash::OVERWRITE; aTransferInfo.NewTitle = sFileURL.copy( 1 + nLastIndex ); // Copy our saved backup copy to the "shadow" file. -- cgit