summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2023-02-24 20:59:50 +0100
committerJulien Nabet <serval2412@yahoo.fr>2023-02-25 10:38:00 +0000
commit5cc761b5d0852d0f5d7954692b2a152a28dcd425 (patch)
tree7574efdba92d712530760e08284914e318baa0df
parent86eb8f694634623b30eabf4e02ef769a7aba4937 (diff)
Fix typos
Change-Id: I7e3d78e6cf80afb72be61942ac95c474dae0424d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147669 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--include/test/a11y/accessibletestbase.hxx2
-rw-r--r--test/qa/cppunit/dialog.cxx2
-rw-r--r--test/source/a11y/accessibletestbase.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/include/test/a11y/accessibletestbase.hxx b/include/test/a11y/accessibletestbase.hxx
index 913e24221353..e174c0cb4b8a 100644
--- a/include/test/a11y/accessibletestbase.hxx
+++ b/include/test/a11y/accessibletestbase.hxx
@@ -167,7 +167,7 @@ protected:
* @param nTimeoutMs Maximum delay to wait the dialog for
* @returns @c true if the dialog closed, @c false if timeout was reached
*
- * @throws css::uno::RuntimeException if an unexpected dialog poped up instead of the
+ * @throws css::uno::RuntimeException if an unexpected dialog popped up instead of the
* expected one.
* @throws Any exception that the user callback supplied to awaitDialog() might have thrown.
*/
diff --git a/test/qa/cppunit/dialog.cxx b/test/qa/cppunit/dialog.cxx
index f64e7d13a68c..c3f68a8f0e4e 100644
--- a/test/qa/cppunit/dialog.cxx
+++ b/test/qa/cppunit/dialog.cxx
@@ -22,7 +22,7 @@ CPPUNIT_TEST_FIXTURE(test::AccessibleTestBase, SelfTestIncorrectDialog)
});
CPPUNIT_ASSERT(activateMenuItem(u"Insert", u"Section..."));
- /* Make sure an incorrect dialog poping up is caught and raises. The exception is thrown in
+ /* Make sure an incorrect dialog popping up is caught and raises. The exception is thrown in
* waitEndDialog() for consistency even though the error itself is likely to have been triggered
* by the activateMenuItem() call above */
CPPUNIT_ASSERT_THROW(dialogWaiter->waitEndDialog(), css::uno::RuntimeException);
diff --git a/test/source/a11y/accessibletestbase.cxx b/test/source/a11y/accessibletestbase.cxx
index 5566eb6cd9a0..47a77e864932 100644
--- a/test/source/a11y/accessibletestbase.cxx
+++ b/test/source/a11y/accessibletestbase.cxx
@@ -333,7 +333,7 @@ test::AccessibleTestBase::awaitDialog(const std::u16string_view name,
* fails/throws */
Dialog dialog(pWin, true);
- /* The poping up dialog ought to be the right one, or something's fishy and
+ /* The popping up dialog ought to be the right one, or something's fishy and
* we're bound to failure (e.g. waiting on a dialog that either will never come, or
* that will not run after the current one -- deadlock style) */
if (msName != pWin->GetText())