From e26d89371f0e4f41476c9a99be01d98dedb76776 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Sat, 14 Dec 2019 22:00:01 +0100 Subject: Fix typo Change-Id: Ibe6192b536d1a60443ab7b20ed68c4ea412f0a76 Reviewed-on: https://gerrit.libreoffice.org/85151 Tested-by: Jenkins Reviewed-by: Julien Nabet --- embeddedobj/source/msole/olepersist.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'embeddedobj') diff --git a/embeddedobj/source/msole/olepersist.cxx b/embeddedobj/source/msole/olepersist.cxx index 8dee4adc8704..36a6a84b4614 100644 --- a/embeddedobj/source/msole/olepersist.cxx +++ b/embeddedobj/source/msole/olepersist.cxx @@ -708,7 +708,7 @@ uno::Reference< io::XStream > OleEmbeddedObject::TryToRetrieveCachedVisualRepres try { CreateOleComponentAndLoad_Impl(); - m_aClassID = m_pOleComponent->GetCLSID(); // was not set during consruction + m_aClassID = m_pOleComponent->GetCLSID(); // was not set during construction } catch( const uno::Exception& ) { @@ -1332,7 +1332,7 @@ void SAL_CALL OleEmbeddedObject::setPersistentEntry( // the object should be initialized from clipboard // impossibility to initialize the object means error here CreateOleComponentFromClipboard_Impl(); - m_aClassID = m_pOleComponent->GetCLSID(); // was not set during consruction + m_aClassID = m_pOleComponent->GetCLSID(); // was not set during construction m_pOleComponent->RunObject(); m_nObjectState = embed::EmbedStates::RUNNING; } @@ -1344,7 +1344,7 @@ void SAL_CALL OleEmbeddedObject::setPersistentEntry( try { CreateOleComponentAndLoad_Impl(); - m_aClassID = m_pOleComponent->GetCLSID(); // was not set during consruction + m_aClassID = m_pOleComponent->GetCLSID(); // was not set during construction } catch( const uno::Exception& ) { @@ -1407,7 +1407,7 @@ void SAL_CALL OleEmbeddedObject::setPersistentEntry( m_pOleComponent->CreateLinkFromFile( aURL ); m_pOleComponent->RunObject(); - m_aClassID = m_pOleComponent->GetCLSID(); // was not set during consruction + m_aClassID = m_pOleComponent->GetCLSID(); // was not set during construction m_nObjectState = embed::EmbedStates::RUNNING; } -- cgit