diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-03-28 14:54:54 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-03-28 15:00:31 +0200 |
commit | c6282e9bc42dcd1f85005db94416fcaf4caa50c1 (patch) | |
tree | 7452cf8fa20c41bd9d14739f5b58e1c0b3e9de67 /desktop | |
parent | 2caa097682e181fe1dfe19d1af1d798ab9af38eb (diff) |
Exclamation marks are unprofessional
Change-Id: Ic75e73cf390872f4095d23a4388739330aeb1286
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/lib/init.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index d0ae29b15498..6c0fbdf11969 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -333,8 +333,8 @@ static LibreOfficeKitDocument* lo_documentLoadWithOptions(LibreOfficeKit* pThis, if (!xContext.is()) { - pLib->maLastExceptionMsg = "ComponentContext is not available!"; - SAL_INFO("lok", "ComponentContext is not available!"); + pLib->maLastExceptionMsg = "ComponentContext is not available"; + SAL_INFO("lok", "ComponentContext is not available"); return NULL; } @@ -342,8 +342,8 @@ static LibreOfficeKitDocument* lo_documentLoadWithOptions(LibreOfficeKit* pThis, if (!xComponentLoader.is()) { - pLib->maLastExceptionMsg = "ComponentLoader is not available!"; - SAL_INFO("lok", "ComponentLoader is not available!"); + pLib->maLastExceptionMsg = "ComponentLoader is not available"; + SAL_INFO("lok", "ComponentLoader is not available"); return NULL; } |