diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-23 12:47:20 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-26 08:59:38 +0200 |
commit | 3f3181522bd5fa7cd32dc81c624ef260b29cfc9c (patch) | |
tree | e9510f8b18c09ea62d1a369eeaa6eaf7b3390cc0 /svx | |
parent | 979c8c56b7d52fe9a5d4b1fbfdab0adaba04c470 (diff) |
s/catched/caught
Change-Id: I7ea6977a9749e86f8058b78cdb91cd2c62da8264
Reviewed-on: https://gerrit.libreoffice.org/39164
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/form/fmsrcimp.cxx | 6 | ||||
-rw-r--r-- | svx/source/form/navigatortree.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/form/fmsrcimp.cxx b/svx/source/form/fmsrcimp.cxx index 2ec434d312c8..765475c758cc 100644 --- a/svx/source/form/fmsrcimp.cxx +++ b/svx/source/form/fmsrcimp.cxx @@ -212,18 +212,18 @@ bool FmSearchEngine::MoveCursor() catch(css::sdbc::SQLException const& e) { (void)e; - SAL_WARN( "svx", "FmSearchEngine::MoveCursor: catched a DatabaseException: " << e.SQLState ); + SAL_WARN( "svx", "FmSearchEngine::MoveCursor: caught a DatabaseException: " << e.SQLState ); bSuccess = false; } catch(Exception const& e) { (void)e; - SAL_WARN( "svx", "FmSearchEngine::MoveCursor: catched an Exception: " << e.Message); + SAL_WARN( "svx", "FmSearchEngine::MoveCursor: caught an Exception: " << e.Message); bSuccess = false; } catch(...) { - OSL_FAIL("FmSearchEngine::MoveCursor : catched an unknown Exception !"); + OSL_FAIL("FmSearchEngine::MoveCursor : caught an unknown Exception !"); bSuccess = false; } diff --git a/svx/source/form/navigatortree.cxx b/svx/source/form/navigatortree.cxx index fd91d43e9a39..5de1ae5490cf 100644 --- a/svx/source/form/navigatortree.cxx +++ b/svx/source/form/navigatortree.cxx @@ -940,7 +940,7 @@ namespace svxform #ifdef DBG_UTIL DBG_ASSERT(bHasHiddenControlsFormat, "NavigatorTree::implExecuteDataTransfer: only copying of hidden controls is supported !"); - // should be catched by AcceptDrop + // should be caught by AcceptDrop #endif // because i want to select all targets (and only them) |