diff options
-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; |