summaryrefslogtreecommitdiff
path: root/reportdesign
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-06-03 13:22:24 +0200
committerNoel Grandin <noel@peralex.com>2013-06-05 08:13:21 +0200
commit9a49980efa3522eb89f66eb185c98009236ffa89 (patch)
tree271602627acedd147d88bf4016b1b92d1f89fc26 /reportdesign
parentac40f246cd6991abaef2bf341a7d2d0d66885ccb (diff)
fdo#46808, Convert various comphelper::ComponentContext
..to regular XComponenContext Change-Id: I08f9092ae818db5c1e37880625b83607c860680b
Diffstat (limited to 'reportdesign')
-rw-r--r--reportdesign/source/core/sdr/UndoEnv.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/reportdesign/source/core/sdr/UndoEnv.cxx b/reportdesign/source/core/sdr/UndoEnv.cxx
index b924100ff6b6..aec827c1119d 100644
--- a/reportdesign/source/core/sdr/UndoEnv.cxx
+++ b/reportdesign/source/core/sdr/UndoEnv.cxx
@@ -42,7 +42,6 @@
#include <svl/smplhint.hxx>
#include <tools/diagnose_ex.h>
#include <comphelper/stl_types.hxx>
-#include <comphelper/componentcontext.hxx>
#include <vcl/svapp.hxx>
#include <dbaccess/dbsubcomponentcontroller.hxx>
#include <svx/unoshape.hxx>
@@ -277,8 +276,7 @@ void SAL_CALL OXUndoEnvironment::propertyChange( const PropertyChangeEvent& _rEv
{
if ( !m_pImpl->m_xIntrospection.is() )
{
- ::comphelper::ComponentContext aContext( m_pImpl->m_rModel.getController()->getORB() );
- m_pImpl->m_xIntrospection = Introspection::create( aContext.getUNOContext() );
+ m_pImpl->m_xIntrospection = Introspection::create( m_pImpl->m_rModel.getController()->getORB() );
}
Reference< XIntrospectionAccess > xIntrospection(
m_pImpl->m_xIntrospection->inspect( makeAny( _rEvent.Source ) ),