diff options
author | David Tardon <dtardon@redhat.com> | 2012-12-17 08:30:18 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-12-17 08:30:18 +0100 |
commit | 243630f394d5a332a7b214970b1f9924650f0255 (patch) | |
tree | 35255db967ec9700c0087df58b511f68d8bd550a /cui/source/customize | |
parent | 7cc485c88f1722b14bdc0dc07b7ada7ab3cf65d9 (diff) |
fdo#58362 do not crash on customize toolbar
Change-Id: I7102a1635329b3bcdd3bf6bc250555cc71e0977e
Diffstat (limited to 'cui/source/customize')
-rw-r--r-- | cui/source/customize/cfg.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx index 1c234cbc56a8..aadccd82cb94 100644 --- a/cui/source/customize/cfg.cxx +++ b/cui/source/customize/cfg.cxx @@ -3706,9 +3706,10 @@ ToolbarSaveInData::ToolbarSaveInData( m_aDescriptorContainer ( ITEM_DESCRIPTOR_CONTAINER ) { + uno::Reference<uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext(); // Initialize the m_xPersistentWindowState variable which is used // to get the default properties of system toolbars such as name - uno::Reference< container::XNameAccess > xPWSS = css::ui::WindowStateConfiguration::create( m_xContext ); + uno::Reference< container::XNameAccess > xPWSS = css::ui::WindowStateConfiguration::create( xContext ); xPWSS->getByName( aModuleId ) >>= m_xPersistentWindowState; } |