[Libreoffice-commits] core.git: stoc/source
Stephan Bergmann
sbergman at redhat.com
Tue Apr 12 15:13:33 UTC 2016
stoc/source/corereflection/crefl.cxx | 2 +-
stoc/source/javavm/javavm.cxx | 2 +-
stoc/source/servicemanager/servicemanager.cxx | 8 ++++----
3 files changed, 6 insertions(+), 6 deletions(-)
New commits:
commit 117dc3c5ecb7874e1a9d2ac96f9df65b8f3d3944
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Tue Apr 12 17:13:03 2016 +0200
Remove stray spaces from start of log messages
Change-Id: I0bf6945a030867b3575fcef81c0d32addb85b992
diff --git a/stoc/source/corereflection/crefl.cxx b/stoc/source/corereflection/crefl.cxx
index d0e9e8c..adad971 100644
--- a/stoc/source/corereflection/crefl.cxx
+++ b/stoc/source/corereflection/crefl.cxx
@@ -210,7 +210,7 @@ inline Reference< XIdlClass > IdlReflectionServiceImpl::constructClass(
return new IdlClassImpl( this, pTypeDescr->pTypeName, pTypeDescr->eTypeClass, pTypeDescr );
default:
- SAL_INFO("stoc", " corereflection type unsupported: " << pTypeDescr->pTypeName);
+ SAL_INFO("stoc", "corereflection type unsupported: " << pTypeDescr->pTypeName);
return Reference< XIdlClass >();
}
}
diff --git a/stoc/source/javavm/javavm.cxx b/stoc/source/javavm/javavm.cxx
index c81fe0c..7a1e08c 100644
--- a/stoc/source/javavm/javavm.cxx
+++ b/stoc/source/javavm/javavm.cxx
@@ -500,7 +500,7 @@ void initVMConfiguration(
getINetPropsFromConfig(&jvm, xSMgr, xCtx);
}
catch(const css::uno::Exception & exception) {
- SAL_INFO("stoc", " can not get INETProps because of >" << exception.Message << "<");
+ SAL_INFO("stoc", "can not get INETProps because of >" << exception.Message << "<");
}
try {
diff --git a/stoc/source/servicemanager/servicemanager.cxx b/stoc/source/servicemanager/servicemanager.cxx
index 55c2c9b1..2e9c42e 100644
--- a/stoc/source/servicemanager/servicemanager.cxx
+++ b/stoc/source/servicemanager/servicemanager.cxx
@@ -891,7 +891,7 @@ Reference< XInterface > OServiceManager::createInstanceWithContext(
Reference< XSingleServiceFactory > xFac2( xFactory, UNO_QUERY );
if (xFac2.is())
{
- SAL_INFO("stoc", " ignoring given context raising service " << rServiceSpecifier << "!!!");
+ SAL_INFO("stoc", "ignoring given context raising service " << rServiceSpecifier << "!!!");
return xFac2->createInstance();
}
}
@@ -899,7 +899,7 @@ Reference< XInterface > OServiceManager::createInstanceWithContext(
}
catch (const lang::DisposedException & exc)
{
- SAL_INFO("stoc", " DisposedException occurred: " << exc.Message);
+ SAL_INFO("stoc", "DisposedException occurred: " << exc.Message);
}
}
@@ -946,7 +946,7 @@ Reference< XInterface > OServiceManager::createInstanceWithArgumentsAndContext(
Reference< XSingleServiceFactory > xFac2( xFactory, UNO_QUERY );
if (xFac2.is())
{
- SAL_INFO("stoc", " ignoring given context raising service " << rServiceSpecifier << "!!!");
+ SAL_INFO("stoc", "ignoring given context raising service " << rServiceSpecifier << "!!!");
return xFac2->createInstanceWithArguments( rArguments );
}
}
@@ -954,7 +954,7 @@ Reference< XInterface > OServiceManager::createInstanceWithArgumentsAndContext(
}
catch (const lang::DisposedException & exc)
{
- SAL_INFO("stoc", " DisposedException occurred: " << exc.Message);
+ SAL_INFO("stoc", "DisposedException occurred: " << exc.Message);
}
}
More information about the Libreoffice-commits
mailing list