summaryrefslogtreecommitdiff
path: root/sd/source/ui/toolpanel
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-01-07 12:36:08 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-01-07 12:36:08 +0100
commit5ea6f6d400e59e037032fb3091c3f6880b562ce9 (patch)
treefa7bccaebf53899c069e7b0896841b25e1d3af40 /sd/source/ui/toolpanel
parent1e1ba8611fb134fb693354daae8931e93e46124c (diff)
UNO objects must be allocated on the heap
This was a regression introduced with 5ea7e74c29f7279b6c31d38185ace576f68f4fb2 "fix some memory leaks in sd." Change-Id: Ibcb2527b396886a5a904d8843c8560765ed859f5
Diffstat (limited to 'sd/source/ui/toolpanel')
-rw-r--r--sd/source/ui/toolpanel/ToolPanelFactory.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/ui/toolpanel/ToolPanelFactory.cxx b/sd/source/ui/toolpanel/ToolPanelFactory.cxx
index 5989ad044719..fdc58a15b424 100644
--- a/sd/source/ui/toolpanel/ToolPanelFactory.cxx
+++ b/sd/source/ui/toolpanel/ToolPanelFactory.cxx
@@ -100,7 +100,8 @@ namespace sd { namespace toolpanel
//------------------------------------------------------------------------------------------------------------------
Reference< XInterface > SAL_CALL ToolPanelFactory_createInstance( const Reference< XComponentContext >& i_rContext )
{
- return Reference< XInterface >( ToolPanelFactory( i_rContext ) );
+ return static_cast< cppu::OWeakObject * >(
+ new ToolPanelFactory( i_rContext ) );
}
//------------------------------------------------------------------------------------------------------------------