diff options
author | dennisroczek <dennisroczek@libreoffice.org> | 2017-03-18 13:48:26 +0000 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-19 05:40:40 +0000 |
commit | de084e09cfbf646703c80fd84cebb5978e1ca940 (patch) | |
tree | 453ef5ee8063426f7139a7651e182412517ff3c3 | |
parent | 4cd1cd396a1ec189660f07ddcfee16c004d71a38 (diff) |
fix grammar/typo: defunctional --> nonfunctional
Change-Id: I672ac5d22c79e63cafc6f9f9f31f69e82dedf342
Reviewed-on: https://gerrit.libreoffice.org/35405
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | starmath/source/edit.cxx | 2 | ||||
-rw-r--r-- | starmath/source/view.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/access/acccontext.hxx | 2 | ||||
-rw-r--r-- | sw/source/core/access/accmap.cxx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/starmath/source/edit.cxx b/starmath/source/edit.cxx index ac3244561dce..9a6bc2f0d1b5 100644 --- a/starmath/source/edit.cxx +++ b/starmath/source/edit.cxx @@ -131,7 +131,7 @@ void SmEditWindow::dispose() // available for those classes. if (mxAccessible.is()) { - mxAccessible->ClearWin(); // make Accessible defunctional + mxAccessible->ClearWin(); // make Accessible nonfunctional mxAccessible.clear(); } diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx index 57aed30c893c..67d96420d7d5 100644 --- a/starmath/source/view.cxx +++ b/starmath/source/view.cxx @@ -122,7 +122,7 @@ SmGraphicWindow::~SmGraphicWindow() void SmGraphicWindow::dispose() { if (mxAccessible.is()) - mxAccessible->ClearWin(); // make Accessible defunctional + mxAccessible->ClearWin(); // make Accessible nonfunctional CaretBlinkStop(); ScrollableWindow::dispose(); } diff --git a/sw/source/core/access/acccontext.hxx b/sw/source/core/access/acccontext.hxx index 9119a6a6336f..dde2c82e4cde 100644 --- a/sw/source/core/access/acccontext.hxx +++ b/sw/source/core/access/acccontext.hxx @@ -364,7 +364,7 @@ public: { \ css::uno::Reference < ifc > xThis( ths ); \ css::lang::DisposedException aExcept( \ - "object is defunctional", \ + "object is nonfunctional", \ xThis ); \ throw aExcept; \ } diff --git a/sw/source/core/access/accmap.cxx b/sw/source/core/access/accmap.cxx index 421461f076d2..c925bac2c6fb 100644 --- a/sw/source/core/access/accmap.cxx +++ b/sw/source/core/access/accmap.cxx @@ -1023,7 +1023,7 @@ void SwAccessibleMap::AppendEvent( const SwAccessibleEvent_Impl& rEvent ) case SwAccessibleEvent_Impl::DISPOSE: // DISPOSE events overwrite all others. They are not stored // but executed immediately to avoid broadcasting of - // defunctional objects. So what needs to be done here is to + // nonfunctional objects. So what needs to be done here is to // remove all events for the frame in question. bAppendEvent = false; break; |