diff options
author | Lionel Elie Mamane <lionel.mamane@gestman.lu> | 2011-08-14 17:00:54 +0200 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2011-08-17 14:10:21 +0100 |
commit | 03e9161e2eca9d389d7ce419495538c31f6aed31 (patch) | |
tree | 920f0f5b2c492de160b6ea81d2782be3203cc876 /basic/source/uno | |
parent | e00c67ba62b1f88399090352008d4840d52ca7e9 (diff) |
fdo#40079: load Dialog library before trying to get embedded images
Diffstat (limited to 'basic/source/uno')
-rw-r--r-- | basic/source/uno/dlgcont.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/uno/dlgcont.cxx b/basic/source/uno/dlgcont.cxx index ef1386bed55c..b4f4470a819b 100644 --- a/basic/source/uno/dlgcont.cxx +++ b/basic/source/uno/dlgcont.cxx @@ -292,7 +292,7 @@ void SfxDialogLibraryContainer::storeLibrariesToStorage( const uno::Reference< e Sequence< OUString > sLibraries = getElementNames(); for ( sal_Int32 i=0; i < sLibraries.getLength(); ++i ) { - // libraries will already be loaded from above + loadLibrary( sLibraries[ i ] ); Reference< XNameContainer > xLib; getByName( sLibraries[ i ] ) >>= xLib; if ( xLib.is() ) |