From 2e5c4b4081411b77b5e0593225b805d3756f7533 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Wed, 8 Jan 2020 06:57:25 +0100 Subject: Grammar fixes Change-Id: I6ac6f6abb601aa254e94612e6826488393de8e3c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86383 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos --- sfx2/qa/complex/sfx2/UndoManager.java | 4 ++-- sfx2/source/appl/newhelp.cxx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'sfx2') diff --git a/sfx2/qa/complex/sfx2/UndoManager.java b/sfx2/qa/complex/sfx2/UndoManager.java index 7e438e852e71..a455a5eb4ca0 100644 --- a/sfx2/qa/complex/sfx2/UndoManager.java +++ b/sfx2/qa/complex/sfx2/UndoManager.java @@ -663,9 +663,9 @@ public class UndoManager m_currentTestCase.verifyInitialDocumentState(); // redo the modification, ensure the listener got the proper notifications - assertEquals( "did not yet do a redo!", 0, m_undoListener.getRedoActionCount() ); + assertEquals( "not yet made a redo!", 0, m_undoListener.getRedoActionCount() ); i_undoManager.redo(); - assertEquals( "did a redo, but got no notification of it!", 1, m_undoListener.getRedoActionCount() ); + assertEquals( "made a redo, but got no notification of it!", 1, m_undoListener.getRedoActionCount() ); // ensure the document is in the proper state, again m_currentTestCase.verifySingleModificationDocumentState(); diff --git a/sfx2/source/appl/newhelp.cxx b/sfx2/source/appl/newhelp.cxx index e615a3f88baf..44f6d04c3821 100644 --- a/sfx2/source/appl/newhelp.cxx +++ b/sfx2/source/appl/newhelp.cxx @@ -1695,7 +1695,7 @@ void SfxHelpIndexWindow_Impl::SetFactory( const OUString& rFactory, bool bActive if ( !rFactory.isEmpty() ) { GetIndexPage()->SetFactory( rFactory ); - // the index page did a check if rFactory is valid, + // the index page made a check if rFactory is valid, // so the index page always returns a valid factory GetSearchPage()->SetFactory( GetIndexPage()->GetFactory() ); if ( bActive ) -- cgit