[Libreoffice-commits] core.git: embeddedobj/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Sat Dec 14 22:01:32 UTC 2019
embeddedobj/source/msole/olepersist.cxx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit e26d89371f0e4f41476c9a99be01d98dedb76776
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sat Dec 14 22:00:01 2019 +0100
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sat Dec 14 23:00:40 2019 +0100
Fix typo
Change-Id: Ibe6192b536d1a60443ab7b20ed68c4ea412f0a76
Reviewed-on: https://gerrit.libreoffice.org/85151
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
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;
}
More information about the Libreoffice-commits
mailing list