diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-14 15:30:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-15 12:25:41 +0200 |
commit | 2c251422bf58449c57ca15527960dc9528b330ea (patch) | |
tree | 0906e48a7c69c817a0b346c10f1d28f8a3afd6d1 /extensions/source/bibliography | |
parent | 1b75f95f9bfa2f4f5ddd4c6b2ef6c86576d9c92b (diff) |
loplugin:logexceptionnicely in editeng..extensions
Change-Id: I50b9d7e92ef057c985d0d6e76dfeb62591d404f6
Reviewed-on: https://gerrit.libreoffice.org/74047
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions/source/bibliography')
-rw-r--r-- | extensions/source/bibliography/datman.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/extensions/source/bibliography/datman.cxx b/extensions/source/bibliography/datman.cxx index ad8215500d9a..0345049a9238 100644 --- a/extensions/source/bibliography/datman.cxx +++ b/extensions/source/bibliography/datman.cxx @@ -426,11 +426,9 @@ DBChangeDialog_Impl::DBChangeDialog_Impl(weld::Window* pParent, BibDataManager* m_xSelectionLB->append_text(rSourceName); m_xSelectionLB->select_text(sActiveSource); } - catch (const Exception& e) + catch (const Exception&) { - SAL_WARN("extensions.biblio", - "Exception in BibDataManager::DBChangeDialog_Impl::DBChangeDialog_Impl " - << e); + TOOLS_WARN_EXCEPTION("extensions.biblio", ""); } } |